In this project, my goal is to write a software pipeline to extract features from a Dataset and identify the lane boundaries within an input video. In this project, my ultimate goal was to write a software pipeline that starts with minimal scaling parameters (e.g. a linear combination of various scaled windows) and automatically extract bounding boxes from the images. The implementation would ideally detect vehicles in a video (start with the test_video.mp4 and later implement on full project_video.mp4). Suprrisingly, I was able to install and configure the YOLO library ("You only look once") To detect vehicles! It is not optimized yet (I'm currentl loading the weights for each frame, but it was a fun project! I implemented tracking using Sliding Windows, Hog subsampling, Frame smoothing and now YOLO. I hope my submission is enough to meet the project requirements. The project goals are listed in detail below.

The goals / steps of this project are the following:
Here are links to the labeled data for vehicle and non-vehicle examples to train your classifier. These example images come from a combination of the GTI vehicle image database, the KITTI vision benchmark suite, and examples extracted from the project video itself. You are welcome and encouraged to take advantage of the recently released Udacity labeled dataset to augment your training data.
Some example images for testing your pipeline on single frames are located in the test_images folder. To help the reviewer examine your work, please save examples of the output from each stage of your pipeline in the folder called ouput_images, and include them in your writeup for the project by describing what each image shows. The video called project_video.mp4 is the video your pipeline should work well on.
Done! - See below.
The code for this step is contained in the first code cell of the IPython notebook (or in lines # through # of the file called some_file.py).
I started by reading in all the vehicle and non-vehicle images. Here is an example of one of each of the vehicle and non-vehicle classes:

I then explored different color spaces and different skimage.hog() parameters (orientations, pixels_per_cell, and cells_per_block). I grabbed random images from each of the two classes and displayed them to get a feel for what the skimage.hog() output looks like.
Here is an example using the YCrCb color space and HOG parameters of orientations=8, pixels_per_cell=(8, 8) and cells_per_block=(2, 2):

I tried various combinations of parameters and...
I trained a linear SVM using...
I decided to search random window positions at random scales all over the image and came up with this (ok just kidding I didn't actually ;):

Ultimately I searched on two scales using YCrCb 3-channel HOG features plus spatially binned color and histograms of color in the feature vector, which provided a nice result. Here are some example images:

Here's a link to my video result
I recorded the positions of positive detections in each frame of the video. From the positive detections I created a heatmap and then thresholded that map to identify vehicle positions. I then used scipy.ndimage.measurements.label() to identify individual blobs in the heatmap. I then assumed each blob corresponded to a vehicle. I constructed bounding boxes to cover the area of each blob detected.
Here's an example result showing the heatmap from a series of frames of video, the result of scipy.ndimage.measurements.label() and the bounding boxes then overlaid on the last frame of video:

scipy.ndimage.measurements.label() on the integrated heatmap from all six frames:¶

Here I'll talk about the approach I took, what techniques I used, what worked and why, where the pipeline might fail and how I might improve it if I were going to pursue this project further.
%matplotlib inline
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
import numpy as np
import cv2
import glob
from PIL import Image
import time
import os
import zipfile as zf
import tarfile
import csv
import pickle
import urllib
from skimage.feature import hog
from sklearn.svm import LinearSVC
from sklearn.preprocessing import RobustScaler
from sklearn.model_selection import train_test_split
import pandas as pd
## Dataset Parameters ##
TRAINING_DATASET_DIRECTORY = 'training_set/'
PIPELINE_SETUP_DIRECTORY = 'pipeline_setup_images/'
WORKING_DIRECTORY = 'data/'
NON_VEHICLES_TOKEN = 'non-vehicles'
dataset_path = "{}{}{}{}".format(WORKING_DIRECTORY, TRAINING_DATASET_DIRECTORY,'**/', '*.png')
DATACACHE_DIRECTORY = os.path.join(WORKING_DIRECTORY, 'datacache/')
PROJECT_SOURCE_URL = 'https://s3.amazonaws.com/udacity-sdc/Vehicle_Tracking'
VEHICLES_ZIPFILE = 'vehicles.zip'
NONVEHICLES_ZIPFILE = 'non-vehicles.zip'
## Udacity Dataset Extraction Parameters ##
LABELS_CSV = 'data/object-detection-crowdai/labels.csv'
UDACITY_SOURCE_URL = 'http://bit.ly/udacity-annoations-crowdai'
DATASET_ZIPFILE = 'object-detection-crowdai.tar.gz'
UDACITY_DATASET_DIRECTORY = 'udacity-set'
APPEND_UDACITY_DATASET = False
UDACITY_AUGMENT_PCT = 0.05
## Image Processing ##
DEFAULT_LENGTH, DEFAULT_WIDTH, DEFAULT_DEPTH = (64, 64, 3)
if DEFAULT_DEPTH > 1:
DEFAULT_RESOLUTION = (DEFAULT_LENGTH, DEFAULT_WIDTH, DEFAULT_DEPTH)
else:
DEFAULT_RESOLUTION = (DEFAULT_LENGTH, DEFAULT_WIDTH)
## Feature Extraction Parameters ##
# Spatial Binning
SPATIAL = 32
BIN_SPATIAL_SIZE = (SPATIAL, SPATIAL)
# Color Histogram
HIST_NBINS = 128
COLOR_SPACE = 'HSV'
# HOG Parameters
HOG_ORIENTATIONS = 9
HOG_PIXELS_PER_CELL = 8
HOG_CELLS_PER_BLOCK = 2
HOG_CHANNEL = 'ALL' # Can be 0, 1, 2, or "ALL"
SW_SPATIAL_FEAT_FLAG = True
SW_HOG_FEAT_FLAG = True
SW_COLOR_HIST_FEAT_FLAG = True
## Training Parameters ##
# SVC Parameters
VALIDATION_PORTION = .2
N_PREDICTIONS = 100
OVERWRITE_DATACACHE = True
# Define a function to scale .PNG and JPEG Files both to 0 to 1
def normalize_pixels(img):
max_pixel_value = np.max(img)
if max_pixel_value > 1.0:
img = np.copy(np.multiply(img, 1.0 / 255.0)).astype(np.float64)
return img
# Define a function to scale .PNG and JPEG Files both to 0 to 1
def denormalize_pixels(img):
max_pixel_value = np.max(img)
if max_pixel_value <= 1.0:
img = np.copy(np.multiply(img, 255.0)).astype(np.float64)
return img
def maybe_download(source_url, filename):
if not os.path.exists(WORKING_DIRECTORY):
os.mkdir(WORKING_DIRECTORY)
filepath = os.path.join(WORKING_DIRECTORY, filename)
if not os.path.exists(filepath):
filepath, _ = urllib.request.urlretrieve(source_url, filepath)
statinfo = os.stat(filepath)
print('')
print('Succesfully downloaded:', filepath, '| % d MB.' % int(statinfo.st_size*1e-6))
return filepath
def unzip_file(zip_file, source_dir_name=None, destination=WORKING_DIRECTORY):
if 'tar.gz' in zip_file:
head, tail = os.path.splitext(zip_file)
if not os.path.exists(os.path.join(os.path.splitext(head)[0])):
print('unzipping file:', zip_file, 'to directory:', os.path.join( os.path.splitext(head)[0]))
tar = tarfile.open(zip_file, "r:*")
tar.extractall(destination)
tar.close()
else: #.zip extension
head, tail = os.path.splitext(zip_file)
#print('Target Dir', os.path.join(destination, head))
if not os.path.exists(os.path.join(destination, head)):
print('File does not exist: ', os.path.join(destination, head), ': Extracting')
zipf = zf.ZipFile(os.path.join(WORKING_DIRECTORY,zip_file))
print('Loaded zipf',zipf, ': Extracting')
zipf.extractall(os.path.join(destination, head))
zipf.close()
## __main()__ method:
## Download and Extract Training Datasets
## Create Training Set Directories to Project Datasets
## Gather more extreriance pulling and building from source and extracting augmentation features
vehicles_zipfile = maybe_download(os.path.join(PROJECT_SOURCE_URL,VEHICLES_ZIPFILE), VEHICLES_ZIPFILE)
source_dir_name, fname = os.path.split(vehicles_zipfile)
unzip_file(fname, source_dir_name=source_dir_name, destination=os.path.join(WORKING_DIRECTORY, TRAINING_DATASET_DIRECTORY))
non_vehicles_zipfile = maybe_download(os.path.join(PROJECT_SOURCE_URL,NONVEHICLES_ZIPFILE), NONVEHICLES_ZIPFILE)
source_dir_name, fname = os.path.split(non_vehicles_zipfile)
unzip_file(fname, source_dir_name=source_dir_name, destination=os.path.join(WORKING_DIRECTORY, TRAINING_DATASET_DIRECTORY))
## Udacity Dataset
tar_file = maybe_download(UDACITY_SOURCE_URL, DATASET_ZIPFILE)
unzip_file(tar_file)
cars_dir = os.path.join(WORKING_DIRECTORY, TRAINING_DATASET_DIRECTORY,
'vehicles', UDACITY_DATASET_DIRECTORY)
os.makedirs(cars_dir, exist_ok=True)
noncars_dir = os.path.join(WORKING_DIRECTORY, TRAINING_DATASET_DIRECTORY,
'non-vehicles', UDACITY_DATASET_DIRECTORY)
os.makedirs(os.path.join(noncars_dir, 'skies'), exist_ok=True)
os.makedirs(os.path.join(noncars_dir, 'roads'), exist_ok=True)
## Extract Labels ##
HEADER_ROW=['xstart', 'ystart', 'xstop', 'ystop', 'frame', 'label', 'preview_url']
annotations = pd.read_csv(LABELS_CSV, names=HEADER_ROW, skiprows=1)
annotations.head()
## Verify this is working, until then, do not use Dataset
## It works! ##
def extract_and_preprocess_image(filepath, cars_dir, noncars_dir, xstart, ystart, xstop, ystop,
img_size=(DEFAULT_LENGTH, DEFAULT_WIDTH), img_ext = '.png'):
full_path = os.path.join(WORKING_DIRECTORY, 'object-detection-crowdai', filepath)
# Image read in from mpimg + .jpg -> (0 to 255)
if os.path.exists(full_path):
img = mpimg.imread(full_path) # Prev - img = cv2.imread(full_path)
img = np.copy(img)
img_shape = img.shape
# Extract Car Image. Note: numpy arrays are (row, col)
car_img = img[ystart:ystop, xstart:xstop]
resized_car_img = cv2.resize(car_img, img_size, interpolation=cv2.INTER_AREA)
im = Image.fromarray(resized_car_img)
# Save Car Image to corresponding Directory
filename, ext = os.path.splitext(filepath)
new_filename = "{}_{}_{}_{}_{}_{}{}".format(filename,'car', xstart, ystart, xstop, ystop, img_ext)
im.save(os.path.join(cars_dir, new_filename)) # Save as .png
im.close
# Auto-Generate a 'Non-Car' Image to keep dataset balanced
i_lrc = np.random.randint(3) # 66% chance of auto generating non-car features
if (i_lrc == 0):
xstart_mod, ystart_mod, xstop_mod, ystop_mod = xstart, \
(0 if ystart-(ystop-ystart) < 0 else ystart-(ystop-ystart)), xstop, ystart
new_filename = "{}_{}_{}_{}_{}_{}{}".format(filename,'sky', xstart_mod, ystart_mod, xstop_mod, ystop_mod, img_ext)
path_file = os.path.join(noncars_dir,'skies', new_filename)
elif (i_lrc == 1):
xstart_mod, ystart_mod, xstop_mod, ystop_mod = xstart, ystop, xstop, \
(img_shape[0] if ystop+(ystop-ystart) > img_shape[0] else ystop+(ystop-ystart))
new_filename = "{}_{}_{}_{}_{}_{}{}".format(filename,'road', xstart_mod, ystart_mod, xstop_mod, ystop_mod, img_ext)
path_file = os.path.join(noncars_dir, 'roads', new_filename)
noncar_img = scaled_img[ystart_mod:ystop_mod, xstart_mod:xstop_mod]
resized_noncar_img = cv2.resize(noncar_img, img_size, interpolation=cv2.INTER_AREA)
# Save noncar image to corresponding Directory
im = Image.fromarray(resized_noncar_img)
filename, ext = os.path.splitext(filepath)
im.save(path_file) # Save as .png
im.close
## Extract Labels ##
for label in annotations.as_matrix():
filename, ext = os.path.splitext(label[4])
new_filename = "{}_{}_{}_{}_{}_{}{}".format(filename,'car', label[0], label[1], label[2], label[3], '.png')
if not os.path.exists(os.path.join(cars_dir, new_filename)) and label[5].lower() == 'car':
try:
extract_and_preprocess_image(label[4], cars_dir, noncars_dir, xstart=label[0], ystart=label[1],
xstop=label[2], ystop=label[3])
except:
print("Error extracting label:", label, " Moving on..")
Define a function to compute binned color features:
def bin_spatial(img, size=BIN_SPATIAL_SIZE):
color1 = cv2.resize(img[:,:,0], size).ravel()
color2 = cv2.resize(img[:,:,1], size).ravel()
color3 = cv2.resize(img[:,:,2], size).ravel()
return np.hstack((color1, color2, color3))
Define a function to compute binned color features:
# Define a function to compute color histogram features
def color_hist(img, nbins=HIST_NBINS):
# Compute the histogram of the color channels separately
channel1_hist = np.histogram(img[:,:,0], bins=nbins)
channel2_hist = np.histogram(img[:,:,1], bins=nbins)
channel3_hist = np.histogram(img[:,:,2], bins=nbins)
# Concatenate the histograms into a single feature vector
hist_features = np.concatenate((channel1_hist[0], channel2_hist[0], channel3_hist[0]))
return hist_features
# Define a function to return HOG features and visualization --
def get_hog_features(img, orient=HOG_ORIENTATIONS,
pix_per_cell=HOG_PIXELS_PER_CELL,
cell_per_block=HOG_CELLS_PER_BLOCK,
vis=False, feature_vec=True):
if vis == True:
denormalized_img = denormalize_pixels(img)
features, hog_image = hog(denormalized_img, orientations=orient, pixels_per_cell=(pix_per_cell, pix_per_cell),
cells_per_block=(cell_per_block, cell_per_block), transform_sqrt=False,
visualise=vis, feature_vector=feature_vec)
return features, hog_image
else:
features = hog(denormalized_img, orientations=orient, pixels_per_cell=(pix_per_cell, pix_per_cell),
cells_per_block=(cell_per_block, cell_per_block), transform_sqrt=False,
visualise=vis, feature_vector=feature_vec)
return features
# Define a function to extract features from a list of images
def extract_features(imgs, cspace=COLOR_SPACE, spatial_size=BIN_SPATIAL_SIZE,
hist_bins=HIST_NBINS):
# Create a list to append feature vectors
features = []
for file in imgs:
image = mpimg.imread(file)
# Image read in from cv2 + .png -> (0 to 1) scaled
if cspace != 'RGB':
if cspace == 'HSV':
feature_image = cv2.cvtColor(image, cv2.COLOR_RGB2HSV)
elif cspace == 'LUV':
feature_image = cv2.cvtColor(image, cv2.COLOR_RGB2LUV)
elif cspace == 'HLS':
feature_image = cv2.cvtColor(image, cv2.COLOR_RGB2HLS)
elif cspace == 'YUV':
feature_image = cv2.cvtColor(image, cv2.COLOR_RGB2YUV)
elif cspace == 'YCrCb':
feature_image = cv2.cvtColor(image, cv2.COLOR_RGB2YCrCb)
else: feature_image = np.copy(image)
# Apply bin_spatial() to get spatial color features
spatial_features = bin_spatial(feature_image, size=spatial_size)
# Apply color_hist() also with a color space option now
hist_features = color_hist(feature_image, nbins=hist_bins)
# Call get_hog_features() with vis=False, feature_vec=True
hog_image = np.copy(image)
hog_shape = np.asarray(hog_image.shape)
if HOG_CHANNEL == 'ALL':
hog_features = []
for channel in range(len(hog_shape)):
hog_features.append(get_hog_features(hog_image[:,:,channel]))
hog_features = np.ravel(hog_features)
else:
hog_features = get_hog_features(hog_image[:,:,HOG_CHANNEL])
# Append the new feature vector to the features list
# Allow for flagged setting of feature vectors (spatial, hist, hog) must maintain the ordering
if(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
features.append(np.concatenate((spatial_features, hist_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
features.append(np.concatenate((hist_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
features.append(np.array(hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
features.append(np.concatenate((spatial_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == False):
features.append(np.array(spatial_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
features.append(np.concatenate((spatial_features, hist_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
features.append(np.array(hist_features))
else:
features.append(np.concatenate(feature_image))
# Return list of feature vectors
return features
## Starting Training Pipeline ##
# Load Image Paths
images = glob.glob(dataset_path, recursive=True)
cars = []
notcars = []
udacity_cars = []
udacity_notcars = []
for image in images:
if UDACITY_DATASET_DIRECTORY in image:
if NON_VEHICLES_TOKEN in image:
udacity_notcars.append(image)
else:
udacity_cars.append(image)
else:
if NON_VEHICLES_TOKEN in image:
notcars.append(image)
else:
cars.append(image)
assert len(images) == len(cars) + len(notcars) + len(udacity_cars) + len(udacity_notcars), 'The subarrays have not split the dataset correctly.'
print('Number of Vehicle Images Found:',len(cars))
print('Number of Non-Vehicle Images Found:',len(notcars))
if APPEND_UDACITY_DATASET == True: #Using to Keep Dataset separate
udacity_augment_size = np.int(len(udacity_cars)*UDACITY_AUGMENT_PCT)
udacity_cars, udacity_notcars = np.array(udacity_cars), np.array(udacity_notcars)
ind = np.random.random_integers(0, len(udacity_cars)-1, udacity_augment_size)
cars.extend(list(udacity_cars[ind]))
ind = np.random.random_integers(0, len(udacity_notcars)-1, udacity_augment_size)
notcars.extend(list(udacity_notcars[ind]))
else:
num_udacity_features = np.int(len(udacity_cars)*UDACITY_AUGMENT_PCT)
udacity_cars, udacity_notcars = np.array(udacity_cars), np.array(udacity_notcars)
udacity_features_ind = np.random.randint(0, len(udacity_cars), size=num_udacity_features)
udacity_cars = list(udacity_cars[udacity_features_ind])
udacity_features_ind = np.random.randint(0, len(udacity_notcars), size=num_udacity_features)
udacity_notcars = list(udacity_notcars[udacity_features_ind])
print('Number of Udacity Vehicle Images Found:',len(udacity_cars))
print('Number of Udacity Non-Vehicle Images Found:',len(udacity_notcars))
print('')
print('Size of Vehicle Images Dataset:',len(cars))
print('Size of Non-Vehicle Images Dataset:',len(notcars))
Number of Vehicle Images Found: 8792 Number of Non-Vehicle Images Found: 8968 Number of Udacity Vehicle Images Found: 314 Number of Udacity Non-Vehicle Images Found: 314 Size of Vehicle Images Dataset: 8792 Size of Non-Vehicle Images Dataset: 8968
# Start Pipeline - Combine and Normalilze Features
car_features = extract_features(cars)
notcar_features = extract_features(notcars)
# Seperately Extract Feature from Udacity Dataset
if APPEND_UDACITY_DATASET == False:
udacity_car_features = extract_features(udacity_cars)
udacity_notcar_features = extract_features(udacity_notcars)
# Create an array stack of feature vectors
X = np.vstack((np.array(car_features), np.array(notcar_features))).astype(np.float64)
# Fit a per-column scaler
X_scaler = RobustScaler().fit(X)
# Apply the scaler to X
scaled_X = X_scaler.transform(X)
car_ind = np.random.randint(0, len(cars))
# Plot an example of raw and scaled features
fig = plt.figure(figsize=(12,4))
plt.subplot(131)
plt.imshow(mpimg.imread(cars[car_ind]))
plt.title('Car Image')
plt.subplot(132)
plt.imshow(mpimg.imread(not_cars[car_ind]))
plt.title('Not-Car Image')
plt.subplot(133)
plt.plot(X[car_ind])
plt.title('Raw Features')
plt.subplot(134)
plt.plot(scaled_X[car_ind])
plt.title('Normalized Features')
fig.tight_layout()
print('Feature Vector size for Cars:', len(car_features[car_ind]))
print('Using Spatial Binning of:',BIN_SPATIAL_SIZE[0],
'and', HIST_NBINS,'histogram bins')
Feature Vector size for Cars: 8748 Using Spatial Binning of: 32 and 128 histogram bins
# Define the labels vector
y = np.hstack((np.ones(len(car_features)), np.zeros(len(notcar_features))))
# Split up data into randomized training and test sets
rand_state = np.random.randint(0, 100)
X_train, X_test, y_train, y_test = train_test_split(
scaled_X, y, test_size=VALIDATION_PORTION, random_state=rand_state)
print('Feature vector length:', len(X_train[0]))
Feature vector length: 8748
svc = LinearSVC()
t=time.time()
svc.fit(X_train, y_train)
t2 = time.time()
print(round(t2-t, 2), 'Seconds to train SVC...')
# Check the score of the SVC
print('Test Accuracy of SVC = ', round(svc.score(X_test, y_test), 4))
# Check the prediction time for a single sample
t=time.time()
n_predict = N_PREDICTIONS
print('SVC predicts: ', svc.predict(X_test[0:n_predict]))
print('For these',n_predict, 'labels: ', y_test[0:n_predict])
t2 = time.time()
print(round(t2-t, 5), 'Seconds to predict', n_predict,'labels with SVC')
45.7 Seconds to train SVC... Test Accuracy of SVC = 0.9935 SVC predicts: [ 1. 1. 1. 0. 1. 0. 0. 1. 1. 0. 1. 0. 1. 1. 0. 1. 0. 0. 1. 1. 0. 0. 1. 1. 0. 1. 1. 1. 1. 0. 1. 1. 0. 1. 0. 0. 1. 0. 0. 0. 1. 1. 0. 0. 0. 1. 0. 0. 1. 0. 0. 1. 1. 0. 1. 0. 0. 1. 1. 0. 1. 0. 1. 1. 1. 1. 1. 0. 1. 0. 1. 0. 1. 1. 0. 0. 0. 1. 0. 0. 1. 1. 1. 1. 1. 1. 0. 0. 1. 0. 0. 1. 1. 0. 1. 0. 1. 0. 1. 1.] For these 100 labels: [ 1. 1. 1. 0. 1. 0. 0. 1. 1. 0. 1. 0. 1. 1. 0. 1. 0. 0. 1. 1. 0. 0. 1. 1. 0. 1. 1. 1. 1. 0. 1. 1. 0. 1. 0. 0. 1. 0. 0. 0. 1. 1. 0. 0. 0. 1. 0. 0. 1. 0. 0. 1. 1. 0. 1. 0. 0. 1. 1. 0. 1. 0. 1. 1. 1. 1. 1. 0. 1. 0. 1. 0. 1. 1. 0. 0. 0. 1. 0. 0. 1. 1. 1. 1. 1. 1. 0. 0. 1. 0. 0. 1. 1. 0. 0. 0. 1. 0. 1. 1.] 0.03851 Seconds to predict 100 labels with SVC
#Save Support Vector Classifier to Datacache
def save_to_datacache(support_vector_classifier, datacache_dir=DATACACHE_DIRECTORY,
override_datacache=OVERWRITE_DATACACHE):
os.makedirs(datacache_dir, exist_ok=True)
svc_pickle = os.path.join(datacache_dir,"svc_pickle.p")
if override_datacache or not os.path.exists(svc_pickle):
svc_hyperparameters = {'svc': svc,
'X_SCALER':X_scaler,
'SPATIAL': SPATIAL,
'HIST_NBINS': HIST_NBINS,
'COLOR_SPACE': COLOR_SPACE,
'HOG_ORIENTATIONS': HOG_ORIENTATIONS,
'HOG_PIXELS_PER_CELL': HOG_PIXELS_PER_CELL,
'HOG_CELLS_PER_BLOCK': HOG_CELLS_PER_BLOCK,
'HOG_CHANNEL': HOG_CHANNEL,
'SW_SPATIAL_FEAT_FLAG': SW_SPATIAL_FEAT_FLAG,
'SW_HOG_FEAT_FLAG': SW_HOG_FEAT_FLAG,
'SW_COLOR_HIST_FEAT_FLAG': SW_COLOR_HIST_FEAT_FLAG
}
pickle.dump(svc_hyperparameters, open(svc_pickle, "wb"))
# Save classifier and parameters to datacache directory
save_to_datacache(svc)
%matplotlib inline
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
import numpy as np
import cv2
import time
import os
import pickle
from skimage.feature import hog
from sklearn.svm import LinearSVC
from sklearn.preprocessing import StandardScaler
from sklearn.model_selection import train_test_split
from scipy.ndimage.measurements import label
## Directories ##
WORKING_DIRECTORY = 'data/'
DATACACHE_DIRECTORY = os.path.join(WORKING_DIRECTORY, 'datacache/')
svc_pickle = os.path.join(DATACACHE_DIRECTORY,"svc_pickle.p")
TESTING_DATASET_DIRECTORY = 'testing_dataset/'
TESTING_PIPELINE_SETUP_DIR= 'test_images/'
testset_path = "{}{}{}".format(WORKING_DIRECTORY, TESTING_PIPELINE_SETUP_DIR, '*.jpg')
with open(svc_pickle, mode='rb') as f:
svc_hyperparameters = pickle.load(f)
## Feature Extraction Parameters ##
SVC = svc_hyperparameters['svc']
X_SCALER = svc_hyperparameters['X_SCALER']
# Spatial Binning
SW_SPATIAL_FEAT_FLAG = svc_hyperparameters['SW_SPATIAL_FEAT_FLAG']
SPATIAL = svc_hyperparameters['SPATIAL']
BIN_SPATIAL_SIZE = (SPATIAL, SPATIAL)
# Color Histogram
SW_COLOR_HIST_FEAT_FLAG = svc_hyperparameters['SW_COLOR_HIST_FEAT_FLAG']
HIST_NBINS = svc_hyperparameters['HIST_NBINS']
COLOR_SPACE = svc_hyperparameters['COLOR_SPACE']
# HOG Parameters
SW_HOG_FEAT_FLAG = svc_hyperparameters['SW_HOG_FEAT_FLAG']
HOG_ORIENTATIONS = svc_hyperparameters['HOG_ORIENTATIONS']
HOG_PIXELS_PER_CELL = svc_hyperparameters['HOG_PIXELS_PER_CELL']
HOG_CELLS_PER_BLOCK = svc_hyperparameters['HOG_CELLS_PER_BLOCK']
HOG_CHANNEL = svc_hyperparameters['HOG_CHANNEL']
## Sliding Windows Parameters ##
SW_XSTART_STOPS = [(200, None), (256, 1000)]
SW_YSTART_STOPS = [(384, 640), (384, None)]
SW_XY_WINDOWS = [(96,96),(128,128)]
SW_XY_OVERLAPS = [(.450,.480),(.21,.280)]
## Parameters - HOG Sub-Sampling ##
SW_YSTART = 400
SW_YSTOP = 656
SW_SCALES = [1.1,1.5, 1.75]
## Vehicle Detection & Smoothing Parameters ##
BBOX_COLOR = (0, 255, 0)
BBOX_THICK = 5
SMOOTHING_FACTOR = 13
File "<ipython-input-176-acbeaa5d0047>", line 34 SW_XY_OVERLAPS = [(.450,.480),(.21.280)] ^ SyntaxError: invalid syntax
# Define a function to draw bounding boxes
def draw_boxes(img, bboxes, color=BBOX_COLOR, thick=BBOX_THICK):
# Make a copy of the image
imcopy = np.copy(img)
# Iterate through the bounding boxes
for bbox in bboxes:
# Draw a rectangle given bbox coordinates
cv2.rectangle(imcopy, (bbox[0][0], bbox[0][1]), (bbox[1][0],bbox[1][1]), color, thick)
return imcopy
# Define a wrapper function for passing in a list of slidw_window parameters
def slide_windows(img, x_start_stops=[[None, None]],
y_start_stops=[[None, None]],
xy_windows=[(64, 64)],
xy_overlaps=[(0.5, 0.5)]):
windows = []
for i in range(len(x_start_stops)):
if len(x_start_stops) == len(xy_windows) and len(x_start_stops) == len(xy_overlaps):
windows.extend(slide_window(img, np.asarray(x_start_stops[i]), np.asarray(y_start_stops[i]),
np.asarray(xy_windows[i]), np.asarray(xy_overlaps[i])))
else:
windows.extend(slide_window(img, np.asarray(x_start_stops[i]), np.asarray(y_start_stops[i]),
np.asarray(xy_windows[0]), np.asarray(xy_overlaps[0])))
return np.concatenate(windows)
# Define a function that takes an image, start and stop positions in both x and y,
# window size (x and y dimensions), and overlap fraction (for both x and y)
def slide_window(img, x_start_stop=[None, None],
y_start_stop=[None, None],
xy_window=(64, 64),
xy_overlap=(0.5, 0.5)):
window_list=[]
# If x and/or y start/stop positions not defined, set to image size
if x_start_stop[0] == None:
x_start_stop[0] = 0
if x_start_stop[1] == None or x_start_stop[1] >= img.shape[1]:
x_start_stop[1] = img.shape[1]
if y_start_stop[0] == None:
y_start_stop[0] = 0
if y_start_stop[1] == None or y_start_stop[1] >= img.shape[0]:
y_start_stop[1] = img.shape[0]
# Compute the span of the region to be searched
xspan = x_start_stop[1] - x_start_stop[0]
yspan = y_start_stop[1] - y_start_stop[0]
# Compute the number of pixels per step in x/y
nx_pix_per_step = np.int(xy_window[0]*(1 - xy_overlap[0]))
ny_pix_per_step = np.int(xy_window[1]*(1 - xy_overlap[1]))
# Compute the number of windows in x/y
nx_buffer = np.int(xy_window[0]*(xy_overlap[0]))
ny_buffer = np.int(xy_window[1]*(xy_overlap[1]))
nx_windows = np.int((xspan-nx_buffer)/nx_pix_per_step)
ny_windows = np.int((yspan-ny_buffer)/ny_pix_per_step)
# Loop through finding x and y window positions
for ys in range(ny_windows):
for xs in range(nx_windows):
# Calculate window position
startx = xs*nx_pix_per_step + x_start_stop[0]
endx = startx + xy_window[0]
starty = ys*ny_pix_per_step + y_start_stop[0]
endy = starty + xy_window[1]
# Append window position to list
window_list.append([[(startx, starty), (endx, endy)]])
return window_list
This method is to be used by the Debugging code cells throught the notebook. This is to make it wasier to plot lists of images
def visualize(fig, rows, cols, imgs, titles):
for i, img in enumerate(imgs):
plt.subplot(rows, cols, i+1)
plt.title(i+1)
img_dims = len(img.shape)
if img_dims < 3:
plt.imshow(img, cmap='hot')
plt.title(titles[i])
else:
plt.imshow(img)
plt.title(titles[i])
This function is very similar to the extract_features() function noted above accept that it requires a single image to check against rather than list of images
def single_img_features(img, color_space=COLOR_SPACE,
spatial_size=BIN_SPATIAL_SIZE,
hist_bins=HIST_NBINS,
orient=HOG_ORIENTATIONS,
pix_per_cell=HOG_PIXELS_PER_CELL,
cell_per_block=HOG_CELLS_PER_BLOCK,
hog_channel=HOG_CHANNEL,
spatial_feat=SW_SPATIAL_FEAT_FLAG,
hist_feat=SW_COLOR_HIST_FEAT_FLAG,
hog_feat=SW_HOG_FEAT_FLAG):
#1) Define an empty list to receive features
img_features = []
#2) Apply color conversion if other than 'RGB'
if color_space != 'RGB':
if color_space == 'HSV':
feature_image = cv2.cvtColor(img, cv2.COLOR_RGB2HSV)
elif color_space == 'LUV':
feature_image = cv2.cvtColor(img, cv2.COLOR_RGB2LUV)
elif color_space == 'HLS':
feature_image = cv2.cvtColor(img, cv2.COLOR_RGB2HLS)
elif color_space == 'YUV':
feature_image = cv2.cvtColor(img, cv2.COLOR_RGB2YUV)
elif color_space == 'YCrCb':
feature_image = cv2.cvtColor(img, cv2.COLOR_RGB2YCrCb)
else: feature_image = np.copy(img)
#3) Compute spatial features if flag is set
if spatial_feat == True:
spatial_features = bin_spatial(feature_image, size=spatial_size)
#5) Compute histogram features if flag is set
if hist_feat == True:
hist_features = color_hist(feature_image, nbins=hist_bins)
#6) Append features to list
#img_features.append(hist_features)
#7) Compute HOG features if flag is set
if hog_feat == True:
# Call get_hog_features() with vis=False, feature_vec=True
hog_image = np.copy(img)
hog_shape = np.asarray(hog_image.shape)
if hog_channel == 'ALL':
hog_features = []
for channel in range(len(hog_shape)):
hog_features.append(get_hog_features(hog_image[:,:,channel],
orient, pix_per_cell, cell_per_block,
vis=False, feature_vec=True))
hog_features = np.ravel(hog_features)
else:
hog_features = get_hog_features(feature_image[:,:,hog_channel], orient,
pix_per_cell, cell_per_block, vis=False, feature_vec=True)
# Append the new feature vector to the features list
# Allow for flagged setting of feature vectors (spatial, hist, hog) must maintain the ordering
if(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
img_features.append(np.concatenate((spatial_features, hist_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
img_features.append(np.concatenate((hist_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
img_features.append(np.array(hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
img_features.append(np.concatenate((spatial_features, hog_features)))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == False):
img_features.append(np.array(spatial_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
img_features.append(np.concatenate((spatial_features, hist_features)))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
img_features.append(np.array(hist_features))
else:
img_features.append(np.concatenate(feature_image))
#9) Return concatenated array of features
return np.concatenate(img_features)
To implement a robust window detection algorithm, we require a function you that accepts an image as well as an arbitrary number of windows and performs a search on the windows, utilizing the SVC to predict bounding boxes for Cars. This can be a handy tool for any of the following detection techniques. In fact all 3 algortihms I perform utilizer search windows to some capacity.
def search_windows(img, windows, svc=SVC,
X_scaler=X_SCALER,
color_space=COLOR_SPACE,
spatial_size=BIN_SPATIAL_SIZE,
hist_bins=HIST_NBINS,
orient=HOG_ORIENTATIONS,
pix_per_cell=HOG_PIXELS_PER_CELL,
cell_per_block=HOG_CELLS_PER_BLOCK,
hog_channel=HOG_CHANNEL,
spatial_feat=SW_SPATIAL_FEAT_FLAG,
hist_feat=SW_COLOR_HIST_FEAT_FLAG,
hog_feat=SW_HOG_FEAT_FLAG):
#1) Create an empty list to receive positive detection windows
on_windows = []
heatmap = np.zeros_like(img[:,:,0])
#2) Iterate over all windows in the list
for window in windows:
test_img = cv2.resize(img[window[0][1]:window[1][1], window[0][0]:window[1][0]],
(DEFAULT_LENGTH, DEFAULT_WIDTH))
#4) Extract features for that window using single_img_features()
features = single_img_features(test_img)
#5) Scale extracted features to be fed to classifier
test_features = X_scaler.transform(list(np.array(features).reshape(1, -1)))
#6) Predict using classifier
prediction = svc.predict(test_features)
#7) If positive (prediction == 1) then save the window
if prediction == 1: # Car detected
on_windows.append(window)
heatmap[window[0][1]:window[1][1], window[0][0]:window[1][0]] +=1
#8) Return windows for positive detections
return on_windows, heatmap
# Try Scaling Windows on Test Images
image_paths = glob.glob(testset_path, recursive=True)
print('Found',len(image_paths),'images in directory:', testset_path)
Found 6 images in directory: data/test_images/*.jpg
def apply_threshold(heatmap, threshold):
# Zero out pixels below the threshold
heatmap[heatmap <= threshold] = 0
return heatmap
def draw_single_frame_labeled_bboxes(img, labels):
# Iterate through all detected cars
for label in labels:
for car_number in range(1, label[1] + 1):
#Find pixels with each car_number label value
nonzero = (label[0] == car_number).nonzero()
# Identify x and y values of those pixels
nonzeroy = np.array(nonzero[0])
nonzerox = np.array(nonzero[1])
#Define a bounding box based on min/max x and y
bbox = ((np.min(nonzerox), np.min(nonzeroy)), (np.max(nonzerox), np.max(nonzeroy)))
#Draw the box on the image
cv2.rectangle(img, bbox[0], bbox[1], BBOX_COLOR, BBOX_THICK)
# Return the image
return img
carslist = []
out_images = []
out_titles = []
labels = []
for img_path in image_paths:
t1 = time.time()
img = mpimg.imread(img_path)
img_shape = img.shape
img = np.copy(img)
draw_img = np.copy(img)
#Make a heatmap of zeros
heatmap = np.zeros_like(img[:,:,0])
threshold = 2
filename = os.path.split(img_path)[-1]
denorm_img = denormalize_pixels(img)
windows = slide_windows(denorm_img, x_start_stops=SW_XSTART_STOPS,
y_start_stops=SW_YSTART_STOPS,
xy_windows=SW_XY_WINDOWS,
xy_overlaps=SW_XY_OVERLAPS)
hot_windows, heatmap = search_windows(denorm_img, windows)
print('BBoxes Found:', len(hot_windows))
window_img = draw_boxes(denorm_img, hot_windows, color=BBOX_COLOR, thick=BBOX_THICK)
labels = label(apply_threshold(heatmap, threshold))
# Draw bounding boxes on a copy of the input image
window_img_thresh = draw_single_frame_labeled_bboxes(draw_img, [labels])
out_images.append(window_img)
out_titles.append('windowed_'+filename)
out_images.append(heatmap)
out_titles.append('heatmapped_'+filename)
out_images.append(window_img_thresh)
out_titles.append('thresholded_'+filename)
print(time.time()-t1, 'seconds to process one image search', len(windows), 'windows')
fig = plt.figure(figsize=(12,24))
visualize(fig, 8, 3, out_images, out_titles)
BBoxes Found: 250 1.937682867050171 seconds to process one image search 273 windows BBoxes Found: 265 1.861745834350586 seconds to process one image search 273 windows BBoxes Found: 262 1.7890410423278809 seconds to process one image search 273 windows BBoxes Found: 250 2.086477041244507 seconds to process one image search 273 windows BBoxes Found: 259 2.096482992172241 seconds to process one image search 273 windows BBoxes Found: 268 1.8385570049285889 seconds to process one image search 273 windows
We want a more efficient way to detect vehicles. This approach will allow for only a single call to get HOG features. The pipeline will then find a sub sample
def convert_color(img, conv=SW_CONVERT_COLOR):
if conv == 'RGB2YCrCb':
return cv2.cvtColor(np.copy(img), cv2.COLOR_RGB2YCrCb)
if conv == 'BGR2YCrCb':
return cv2.cvtColor(np.copy(img), cv2.COLOR_BGR2YCrCb)
if conv == 'RGB2LUV':
return cv2.cvtColor(np.copy(img), cv2.COLOR_RGB2LUV)
if conv == 'RGB2HSV':
return cv2.cvtColor(np.copy(img), cv2.COLOR_RGB2HSV)
Note: This function is essentially duplicate code from my primary HOG subsampling implemented below
out_images = []
out_maps = []
out_titles = []
out_boxes = []
## Parameters - HOG Sub-Sampling ##
ystart = SW_YSTART
ystop = SW_YSTOP
scale = SW_SCALES
spatial_size=BIN_SPATIAL_SIZE
hist_bins=HIST_NBINS
orient=HOG_ORIENTATIONS
pix_per_cell=HOG_PIXELS_PER_CELL
cell_per_block=HOG_CELLS_PER_BLOCK
hog_channel=HOG_CHANNEL
spatial_feat=SW_SPATIAL_FEAT_FLAG
hog_feat=SW_HOG_FEAT_FLAG
hist_feat=SW_COLOR_HIST_FEAT_FLAG
#Iterate over the test images
for img_path in image_paths:
img_boxes = []
t1 = time.time()
count = 0
img = mpimg.imread(img_path)
img = np.copy(img)
denorm_img = denormalize_pixels(img)
draw_img = np.copy(denorm_img)
#Make a heatmap of zeros
heatmap = np.zeros_like(denorm_img[:,:,0])
img_to_search = denorm_img[ystart:ystop,:,:]
ctrans_tosearch = convert_color(img_to_search, conv=SW_CONVERT_COLOR)
if type(scale) == 'float':
scale = [scale]
for scle in scale:
if scle != 1:
imshape = ctrans_tosearch.shape
ctrans_tosearch = cv2.resize(ctrans_tosearch, (np.int(imshape[1]/scle), np.int(imshape[0]/scle)))
ch1 = ctrans_tosearch[:,:,0]
ch2 = ctrans_tosearch[:,:,1]
ch3 = ctrans_tosearch[:,:,2]
# Define blocks and steps as above
nxblocks = (ch1.shape[1] // pix_per_cell)-1
nyblocks = (ch1.shape[0] // pix_per_cell)-1
nfeat_per_block = orient*cell_per_block**2
window = 64 # HOG_PIXELS_PER_CELL*HOG_PIXELS_PER_CELL # 8 cells and 8 pix per cell
nblocks_per_window = (window // pix_per_cell)-1 # The // division is used for integers (for indices)
cells_per_step = 2 # Instead of overlap, define how many cells to step
nxsteps = (nxblocks - nblocks_per_window) // cells_per_step # The // division is used for integers (for indices)
nysteps = (nyblocks - nblocks_per_window) // cells_per_step # The // division is used for integers (for indices)
# Compute individual channel HOG features for the entire image
hog1 = get_hog_features(ch1, orient, pix_per_cell, cell_per_block, feature_vec=False)
hog2 = get_hog_features(ch2, orient, pix_per_cell, cell_per_block, feature_vec=False)
hog3 = get_hog_features(ch3, orient, pix_per_cell, cell_per_block, feature_vec=False)
for xb in range(nxsteps):
for yb in range(nysteps):
count += 1
ypos = yb*cells_per_step
xpos = xb*cells_per_step
# Extract HOG for this particular patch
if SW_HOG_FEAT_FLAG == True: # Should always be true
hog_feat1 = hog1[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_feat2 = hog2[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_feat3 = hog3[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_features = np.hstack((hog_feat1, hog_feat2, hog_feat3))
xleft = xpos*pix_per_cell
ytop = ypos*pix_per_cell
# Extract the image patch
subimg = cv2.resize(ctrans_tosearch[ytop:ytop+window, xleft:xleft+window], (DEFAULT_LENGTH, DEFAULT_WIDTH))
# Get color features
if SW_SPATIAL_FEAT_FLAG == True:
spatial_features = bin_spatial(subimg, size=BIN_SPATIAL_SIZE)
if SW_COLOR_HIST_FEAT_FLAG == True:
hist_features = color_hist(subimg, nbins=HIST_NBINS)
# Append the new feature vector to the features list
# Allow for flagged setting of feature vectors (spatial, hist, hog) must maintain the ordering
if(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((spatial_features, hist_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((hist_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((spatial_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((spatial_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((spatial_features, hist_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((hist_features))
else:
test_feats = np.hstack((np.ravel(img)))
# Scale features and make a prediction
test_features = X_SCALER.transform(test_feats.reshape(1, -1))
test_prediction = SVC.predict(test_features)
if test_prediction == 1:
xbox_left = np.int(xleft*scle)
ytop_draw = np.int(ytop*scle)
win_draw = np.int(window*scle)
cv2.rectangle(draw_img,(xbox_left, ytop_draw+ystart),
(xbox_left+win_draw, ytop_draw+win_draw+ystart),BBOX_COLOR,6)
img_boxes.append(((xbox_left, ytop_draw+ystart),
(xbox_left+win_draw,ytop_draw+win_draw+ystart)))
heatmap[ytop_draw+ystart:ytop_draw+win_draw+ystart, xbox_left:xbox_left+win_draw] +=1
print(time.time()-t1, 'seconds to run, total windows = ', count)
out_images.append(draw_img)
out_titles.append(os.path.split(img_path)[-1])
out_titles.append(os.path.split(img_path)[-1])
out_images.append(heatmap)
out_maps.append(heatmap)
out_boxes.append(img_boxes)
fig = plt.figure(figsize=(12,24))
visualize(fig, 8, 2, out_images, out_titles)
0.38428306579589844 seconds to run, total windows = 10 0.39461207389831543 seconds to run, total windows = 20 0.4045569896697998 seconds to run, total windows = 30 0.4143989086151123 seconds to run, total windows = 40 0.42676305770874023 seconds to run, total windows = 50 0.4378371238708496 seconds to run, total windows = 60 0.4496769905090332 seconds to run, total windows = 70 0.46471309661865234 seconds to run, total windows = 80 0.4795570373535156 seconds to run, total windows = 90 0.49379897117614746 seconds to run, total windows = 100 0.5073180198669434 seconds to run, total windows = 110 0.5178709030151367 seconds to run, total windows = 120 0.5347299575805664 seconds to run, total windows = 130 0.5514271259307861 seconds to run, total windows = 140 0.5653929710388184 seconds to run, total windows = 150 0.579003095626831 seconds to run, total windows = 160 0.5945401191711426 seconds to run, total windows = 170 0.6121439933776855 seconds to run, total windows = 180 0.6309521198272705 seconds to run, total windows = 190 0.6579890251159668 seconds to run, total windows = 200 0.675631046295166 seconds to run, total windows = 210 0.6932880878448486 seconds to run, total windows = 220 0.7681529521942139 seconds to run, total windows = 230 0.7929389476776123 seconds to run, total windows = 240 0.8107891082763672 seconds to run, total windows = 250 0.8682379722595215 seconds to run, total windows = 260 0.9560189247131348 seconds to run, total windows = 270 1.004810094833374 seconds to run, total windows = 280 1.0651240348815918 seconds to run, total windows = 290 1.0842809677124023 seconds to run, total windows = 300 1.1066949367523193 seconds to run, total windows = 310 1.120194911956787 seconds to run, total windows = 320 1.1369030475616455 seconds to run, total windows = 330 1.154721975326538 seconds to run, total windows = 340 1.1719770431518555 seconds to run, total windows = 350 1.1872451305389404 seconds to run, total windows = 360 1.2346811294555664 seconds to run, total windows = 370 1.2483999729156494 seconds to run, total windows = 380 1.2585389614105225 seconds to run, total windows = 390 1.2706100940704346 seconds to run, total windows = 400 1.2828009128570557 seconds to run, total windows = 410 1.295422077178955 seconds to run, total windows = 420 1.3102869987487793 seconds to run, total windows = 430 1.3245680332183838 seconds to run, total windows = 440 1.3417260646820068 seconds to run, total windows = 450 1.350743055343628 seconds to run, total windows = 460 1.361004114151001 seconds to run, total windows = 470 1.370872974395752 seconds to run, total windows = 480 1.3805780410766602 seconds to run, total windows = 490 1.3910250663757324 seconds to run, total windows = 500 1.4008350372314453 seconds to run, total windows = 510 1.410634994506836 seconds to run, total windows = 520 1.4199011325836182 seconds to run, total windows = 530 1.4298090934753418 seconds to run, total windows = 540 1.4428410530090332 seconds to run, total windows = 550 1.4521369934082031 seconds to run, total windows = 560 1.4620609283447266 seconds to run, total windows = 570 1.4717330932617188 seconds to run, total windows = 580 1.4865200519561768 seconds to run, total windows = 590 1.5018730163574219 seconds to run, total windows = 600 1.5177009105682373 seconds to run, total windows = 610 1.5335891246795654 seconds to run, total windows = 620 1.5459280014038086 seconds to run, total windows = 630 1.5558509826660156 seconds to run, total windows = 640 1.5662240982055664 seconds to run, total windows = 650 1.5762939453125 seconds to run, total windows = 660 1.5853219032287598 seconds to run, total windows = 670 1.5956099033355713 seconds to run, total windows = 680 1.7534599304199219 seconds to run, total windows = 686 1.7600529193878174 seconds to run, total windows = 692 1.7658660411834717 seconds to run, total windows = 698 1.7714009284973145 seconds to run, total windows = 704 1.7780640125274658 seconds to run, total windows = 710 1.7840540409088135 seconds to run, total windows = 716 1.7905659675598145 seconds to run, total windows = 722 1.7964749336242676 seconds to run, total windows = 728 1.802596092224121 seconds to run, total windows = 734 1.8084230422973633 seconds to run, total windows = 740 1.8141720294952393 seconds to run, total windows = 746 1.819694995880127 seconds to run, total windows = 752 1.8259029388427734 seconds to run, total windows = 758 1.8316171169281006 seconds to run, total windows = 764 1.8411130905151367 seconds to run, total windows = 770 1.8477520942687988 seconds to run, total windows = 776 1.8533380031585693 seconds to run, total windows = 782 1.8596439361572266 seconds to run, total windows = 788 1.8659400939941406 seconds to run, total windows = 794 1.8713090419769287 seconds to run, total windows = 800 1.877377986907959 seconds to run, total windows = 806 1.8847451210021973 seconds to run, total windows = 812 1.8901638984680176 seconds to run, total windows = 818 1.8964591026306152 seconds to run, total windows = 824 1.9021689891815186 seconds to run, total windows = 830 1.9080209732055664 seconds to run, total windows = 836 1.9135549068450928 seconds to run, total windows = 842 1.9193971157073975 seconds to run, total windows = 848 1.9252519607543945 seconds to run, total windows = 854 1.9310479164123535 seconds to run, total windows = 860 1.938981056213379 seconds to run, total windows = 866 1.945162057876587 seconds to run, total windows = 872 1.951112985610962 seconds to run, total windows = 878 1.9598169326782227 seconds to run, total windows = 884 1.9672460556030273 seconds to run, total windows = 890 1.9775938987731934 seconds to run, total windows = 896 1.9872949123382568 seconds to run, total windows = 902 1.9974920749664307 seconds to run, total windows = 908 2.005495071411133 seconds to run, total windows = 914 2.0145370960235596 seconds to run, total windows = 920 2.0237910747528076 seconds to run, total windows = 926 2.0345370769500732 seconds to run, total windows = 932 2.044528007507324 seconds to run, total windows = 938 2.0519590377807617 seconds to run, total windows = 944 2.0578629970550537 seconds to run, total windows = 950 2.0637340545654297 seconds to run, total windows = 956 2.071903944015503 seconds to run, total windows = 962 2.159024953842163 seconds to run, total windows = 964 2.1633739471435547 seconds to run, total windows = 966 2.167026996612549 seconds to run, total windows = 968 2.170128107070923 seconds to run, total windows = 970 2.1730570793151855 seconds to run, total windows = 972 2.175823926925659 seconds to run, total windows = 974 2.177690029144287 seconds to run, total windows = 976 2.1795709133148193 seconds to run, total windows = 978 2.181605100631714 seconds to run, total windows = 980 2.1841609477996826 seconds to run, total windows = 982 2.1863040924072266 seconds to run, total windows = 984 2.190369129180908 seconds to run, total windows = 986 2.1936631202697754 seconds to run, total windows = 988 2.196985960006714 seconds to run, total windows = 990 2.2001729011535645 seconds to run, total windows = 992 2.2031641006469727 seconds to run, total windows = 994 2.205374002456665 seconds to run, total windows = 996 2.2072699069976807 seconds to run, total windows = 998 2.210740089416504 seconds to run, total windows = 1000 2.2137210369110107 seconds to run, total windows = 1002 2.2168519496917725 seconds to run, total windows = 1004 2.219559907913208 seconds to run, total windows = 1006 2.2236111164093018 seconds to run, total windows = 1008 2.2270901203155518 seconds to run, total windows = 1010 2.229849100112915 seconds to run, total windows = 1012 2.2317240238189697 seconds to run, total windows = 1014 2.233628034591675 seconds to run, total windows = 1016 2.2360079288482666 seconds to run, total windows = 1018 2.23881196975708 seconds to run, total windows = 1020 2.2419230937957764 seconds to run, total windows = 1022 2.2768619060516357 seconds to run, total windows = 1022 2.2769269943237305 seconds to run, total windows = 1022 2.2769579887390137 seconds to run, total windows = 1022 2.276987075805664 seconds to run, total windows = 1022 2.2770159244537354 seconds to run, total windows = 1022 2.2770450115203857 seconds to run, total windows = 1022 2.277074098587036 seconds to run, total windows = 1022 2.277100086212158 seconds to run, total windows = 1022 2.2771270275115967 seconds to run, total windows = 1022 2.277156114578247 seconds to run, total windows = 1022 2.2771849632263184 seconds to run, total windows = 1022 2.2772130966186523 seconds to run, total windows = 1022 2.2772419452667236 seconds to run, total windows = 1022 2.277271032333374 seconds to run, total windows = 1022 2.277298927307129 seconds to run, total windows = 1022 2.285928964614868 seconds to run, total windows = 1022 2.2859930992126465 seconds to run, total windows = 1022 2.286026954650879 seconds to run, total windows = 1022 2.2860589027404785 seconds to run, total windows = 1022 2.2860910892486572 seconds to run, total windows = 1022 2.2861220836639404 seconds to run, total windows = 1022 0.45173192024230957 seconds to run, total windows = 10 0.46608495712280273 seconds to run, total windows = 20 0.4788799285888672 seconds to run, total windows = 30 0.48978400230407715 seconds to run, total windows = 40 0.4998199939727783 seconds to run, total windows = 50 0.509462833404541 seconds to run, total windows = 60 0.5190238952636719 seconds to run, total windows = 70 0.5290579795837402 seconds to run, total windows = 80 0.5385549068450928 seconds to run, total windows = 90 0.5480449199676514 seconds to run, total windows = 100 0.5590188503265381 seconds to run, total windows = 110 0.5707628726959229 seconds to run, total windows = 120 0.5803370475769043 seconds to run, total windows = 130 0.590505838394165 seconds to run, total windows = 140 0.6005148887634277 seconds to run, total windows = 150 0.6095149517059326 seconds to run, total windows = 160 0.6188609600067139 seconds to run, total windows = 170 0.6304488182067871 seconds to run, total windows = 180 0.6397988796234131 seconds to run, total windows = 190 0.6495819091796875 seconds to run, total windows = 200 0.6737499237060547 seconds to run, total windows = 210 0.6912758350372314 seconds to run, total windows = 220 0.7060768604278564 seconds to run, total windows = 230 0.7216179370880127 seconds to run, total windows = 240 0.7361488342285156 seconds to run, total windows = 250 0.7499039173126221 seconds to run, total windows = 260 0.7624068260192871 seconds to run, total windows = 270 0.771826982498169 seconds to run, total windows = 280 0.7809758186340332 seconds to run, total windows = 290 0.7904958724975586 seconds to run, total windows = 300 0.8001060485839844 seconds to run, total windows = 310 0.8103678226470947 seconds to run, total windows = 320 0.8194749355316162 seconds to run, total windows = 330 0.8297898769378662 seconds to run, total windows = 340 0.8395729064941406 seconds to run, total windows = 350 0.8491549491882324 seconds to run, total windows = 360 0.8588378429412842 seconds to run, total windows = 370 0.8778259754180908 seconds to run, total windows = 380 0.8910059928894043 seconds to run, total windows = 390 0.9061129093170166 seconds to run, total windows = 400 0.919389009475708 seconds to run, total windows = 410 0.9308719635009766 seconds to run, total windows = 420 0.9458978176116943 seconds to run, total windows = 430 0.9619350433349609 seconds to run, total windows = 440 0.9814610481262207 seconds to run, total windows = 450 0.9941608905792236 seconds to run, total windows = 460 1.008033037185669 seconds to run, total windows = 470 1.0231029987335205 seconds to run, total windows = 480 1.0359978675842285 seconds to run, total windows = 490 1.0511329174041748 seconds to run, total windows = 500 1.0976309776306152 seconds to run, total windows = 510 1.164604902267456 seconds to run, total windows = 520 1.2008459568023682 seconds to run, total windows = 530 1.2283580303192139 seconds to run, total windows = 540 1.2560720443725586 seconds to run, total windows = 550 1.2827110290527344 seconds to run, total windows = 560 1.2924959659576416 seconds to run, total windows = 570 1.305647850036621 seconds to run, total windows = 580 1.3217148780822754 seconds to run, total windows = 590 1.3360140323638916 seconds to run, total windows = 600 1.3495359420776367 seconds to run, total windows = 610 1.374147891998291 seconds to run, total windows = 620 1.3860478401184082 seconds to run, total windows = 630 1.3995130062103271 seconds to run, total windows = 640 1.4095120429992676 seconds to run, total windows = 650 1.4189598560333252 seconds to run, total windows = 660 1.4287300109863281 seconds to run, total windows = 670 1.4396328926086426 seconds to run, total windows = 680 1.6120929718017578 seconds to run, total windows = 686 1.6179180145263672 seconds to run, total windows = 692 1.6240949630737305 seconds to run, total windows = 698 1.6294808387756348 seconds to run, total windows = 704 1.635787010192871 seconds to run, total windows = 710 1.6420438289642334 seconds to run, total windows = 716 1.6480319499969482 seconds to run, total windows = 722 1.6534018516540527 seconds to run, total windows = 728 1.6596698760986328 seconds to run, total windows = 734 1.6678040027618408 seconds to run, total windows = 740 1.6757409572601318 seconds to run, total windows = 746 1.681494951248169 seconds to run, total windows = 752 1.6869518756866455 seconds to run, total windows = 758 1.6933059692382812 seconds to run, total windows = 764 1.6993420124053955 seconds to run, total windows = 770 1.705327033996582 seconds to run, total windows = 776 1.7112078666687012 seconds to run, total windows = 782 1.716627836227417 seconds to run, total windows = 788 1.722764015197754 seconds to run, total windows = 794 1.7283589839935303 seconds to run, total windows = 800 1.7341148853302002 seconds to run, total windows = 806 1.7396299839019775 seconds to run, total windows = 812 1.7454099655151367 seconds to run, total windows = 818 1.751147985458374 seconds to run, total windows = 824 1.7569189071655273 seconds to run, total windows = 830 1.7629029750823975 seconds to run, total windows = 836 1.7723019123077393 seconds to run, total windows = 842 1.7792730331420898 seconds to run, total windows = 848 1.7850618362426758 seconds to run, total windows = 854 1.7909739017486572 seconds to run, total windows = 860 1.7968368530273438 seconds to run, total windows = 866 1.8023958206176758 seconds to run, total windows = 872 1.808100938796997 seconds to run, total windows = 878 1.8137478828430176 seconds to run, total windows = 884 1.8208889961242676 seconds to run, total windows = 890 1.8267998695373535 seconds to run, total windows = 896 1.834040880203247 seconds to run, total windows = 902 1.8417668342590332 seconds to run, total windows = 908 1.8474318981170654 seconds to run, total windows = 914 1.856017827987671 seconds to run, total windows = 920 1.8658230304718018 seconds to run, total windows = 926 1.8767988681793213 seconds to run, total windows = 932 1.8872098922729492 seconds to run, total windows = 938 1.8977570533752441 seconds to run, total windows = 944 1.9101579189300537 seconds to run, total windows = 950 1.9189698696136475 seconds to run, total windows = 956 1.9291698932647705 seconds to run, total windows = 962 1.9988038539886475 seconds to run, total windows = 964 2.001919984817505 seconds to run, total windows = 966 2.003957986831665 seconds to run, total windows = 968 2.0072689056396484 seconds to run, total windows = 970 2.0095479488372803 seconds to run, total windows = 972 2.0117478370666504 seconds to run, total windows = 974 2.0136759281158447 seconds to run, total windows = 976 2.0155389308929443 seconds to run, total windows = 978 2.01784086227417 seconds to run, total windows = 980 2.019969940185547 seconds to run, total windows = 982 2.022953987121582 seconds to run, total windows = 984 2.0260210037231445 seconds to run, total windows = 986 2.0294220447540283 seconds to run, total windows = 988 2.03262996673584 seconds to run, total windows = 990 2.0363800525665283 seconds to run, total windows = 992 2.038907051086426 seconds to run, total windows = 994 2.04168701171875 seconds to run, total windows = 996 2.0439329147338867 seconds to run, total windows = 998 2.047322988510132 seconds to run, total windows = 1000 2.050636053085327 seconds to run, total windows = 1002 2.0538549423217773 seconds to run, total windows = 1004 2.0573689937591553 seconds to run, total windows = 1006 2.0605759620666504 seconds to run, total windows = 1008 2.063839912414551 seconds to run, total windows = 1010 2.0672879219055176 seconds to run, total windows = 1012 2.070570945739746 seconds to run, total windows = 1014 2.074537992477417 seconds to run, total windows = 1016 2.0782508850097656 seconds to run, total windows = 1018 2.0803959369659424 seconds to run, total windows = 1020 2.0834999084472656 seconds to run, total windows = 1022 2.1035408973693848 seconds to run, total windows = 1022 2.1035819053649902 seconds to run, total windows = 1022 2.1035988330841064 seconds to run, total windows = 1022 2.10361385345459 seconds to run, total windows = 1022 2.103627920150757 seconds to run, total windows = 1022 2.103641986846924 seconds to run, total windows = 1022 2.103656053543091 seconds to run, total windows = 1022 2.1036698818206787 seconds to run, total windows = 1022 2.1036839485168457 seconds to run, total windows = 1022 2.103713035583496 seconds to run, total windows = 1022 2.1037509441375732 seconds to run, total windows = 1022 2.1037819385528564 seconds to run, total windows = 1022 2.103813886642456 seconds to run, total windows = 1022 2.1038448810577393 seconds to run, total windows = 1022 2.103876829147339 seconds to run, total windows = 1022 2.1112430095672607 seconds to run, total windows = 1022 2.111297845840454 seconds to run, total windows = 1022 2.111327886581421 seconds to run, total windows = 1022 2.111362934112549 seconds to run, total windows = 1022 2.1113929748535156 seconds to run, total windows = 1022 2.1114208698272705 seconds to run, total windows = 1022 0.37227702140808105 seconds to run, total windows = 10 0.38332509994506836 seconds to run, total windows = 20 0.3932161331176758 seconds to run, total windows = 30 0.4029510021209717 seconds to run, total windows = 40 0.412722110748291 seconds to run, total windows = 50 0.42204904556274414 seconds to run, total windows = 60 0.4321010112762451 seconds to run, total windows = 70 0.44150400161743164 seconds to run, total windows = 80 0.45148301124572754 seconds to run, total windows = 90 0.46305012702941895 seconds to run, total windows = 100 0.4751620292663574 seconds to run, total windows = 110 0.4864010810852051 seconds to run, total windows = 120 0.4965231418609619 seconds to run, total windows = 130 0.5062410831451416 seconds to run, total windows = 140 0.5164220333099365 seconds to run, total windows = 150 0.5261061191558838 seconds to run, total windows = 160 0.5354859828948975 seconds to run, total windows = 170 0.5449590682983398 seconds to run, total windows = 180 0.5546340942382812 seconds to run, total windows = 190 0.5694501399993896 seconds to run, total windows = 200 0.5874841213226318 seconds to run, total windows = 210 0.6019160747528076 seconds to run, total windows = 220 0.6156480312347412 seconds to run, total windows = 230 0.6280319690704346 seconds to run, total windows = 240 0.6378090381622314 seconds to run, total windows = 250 0.6528060436248779 seconds to run, total windows = 260 0.6704139709472656 seconds to run, total windows = 270 0.6822860240936279 seconds to run, total windows = 280 0.6946849822998047 seconds to run, total windows = 290 0.7065680027008057 seconds to run, total windows = 300 0.7165961265563965 seconds to run, total windows = 310 0.7259180545806885 seconds to run, total windows = 320 0.7356510162353516 seconds to run, total windows = 330 0.7454700469970703 seconds to run, total windows = 340 0.7553961277008057 seconds to run, total windows = 350 0.7674341201782227 seconds to run, total windows = 360 0.7775781154632568 seconds to run, total windows = 370 0.786689043045044 seconds to run, total windows = 380 0.7998671531677246 seconds to run, total windows = 390 0.8127779960632324 seconds to run, total windows = 400 0.829383134841919 seconds to run, total windows = 410 0.843217134475708 seconds to run, total windows = 420 0.8592660427093506 seconds to run, total windows = 430 0.8757669925689697 seconds to run, total windows = 440 0.8900060653686523 seconds to run, total windows = 450 0.9029819965362549 seconds to run, total windows = 460 0.9158661365509033 seconds to run, total windows = 470 0.9275660514831543 seconds to run, total windows = 480 0.9367530345916748 seconds to run, total windows = 490 0.9461259841918945 seconds to run, total windows = 500 0.9565720558166504 seconds to run, total windows = 510 0.9690999984741211 seconds to run, total windows = 520 0.9791390895843506 seconds to run, total windows = 530 0.989389181137085 seconds to run, total windows = 540 0.9993500709533691 seconds to run, total windows = 550 1.0131909847259521 seconds to run, total windows = 560 1.0300061702728271 seconds to run, total windows = 570 1.0447871685028076 seconds to run, total windows = 580 1.0572590827941895 seconds to run, total windows = 590 1.0722150802612305 seconds to run, total windows = 600 1.0906939506530762 seconds to run, total windows = 610 1.1066269874572754 seconds to run, total windows = 620 1.119832992553711 seconds to run, total windows = 630 1.1300439834594727 seconds to run, total windows = 640 1.139139175415039 seconds to run, total windows = 650 1.1492950916290283 seconds to run, total windows = 660 1.1597411632537842 seconds to run, total windows = 670 1.1736490726470947 seconds to run, total windows = 680 1.3621230125427246 seconds to run, total windows = 686 1.371293067932129 seconds to run, total windows = 692 1.3818061351776123 seconds to run, total windows = 698 1.3889729976654053 seconds to run, total windows = 704 1.3960480690002441 seconds to run, total windows = 710 1.4030940532684326 seconds to run, total windows = 716 1.4085910320281982 seconds to run, total windows = 722 1.4157850742340088 seconds to run, total windows = 728 1.4225261211395264 seconds to run, total windows = 734 1.4299111366271973 seconds to run, total windows = 740 1.4370040893554688 seconds to run, total windows = 746 1.4439129829406738 seconds to run, total windows = 752 1.4497690200805664 seconds to run, total windows = 758 1.4554200172424316 seconds to run, total windows = 764 1.4613211154937744 seconds to run, total windows = 770 1.4683270454406738 seconds to run, total windows = 776 1.4789471626281738 seconds to run, total windows = 782 1.4856109619140625 seconds to run, total windows = 788 1.4923789501190186 seconds to run, total windows = 794 1.4994800090789795 seconds to run, total windows = 800 1.5059151649475098 seconds to run, total windows = 806 1.5133531093597412 seconds to run, total windows = 812 1.5202369689941406 seconds to run, total windows = 818 1.527137041091919 seconds to run, total windows = 824 1.5342919826507568 seconds to run, total windows = 830 1.5415489673614502 seconds to run, total windows = 836 1.549316167831421 seconds to run, total windows = 842 1.5561120510101318 seconds to run, total windows = 848 1.563127040863037 seconds to run, total windows = 854 1.5739400386810303 seconds to run, total windows = 860 1.588716983795166 seconds to run, total windows = 866 1.5976061820983887 seconds to run, total windows = 872 1.6082980632781982 seconds to run, total windows = 878 1.6200931072235107 seconds to run, total windows = 884 1.6310601234436035 seconds to run, total windows = 890 1.6401281356811523 seconds to run, total windows = 896 1.6517260074615479 seconds to run, total windows = 902 1.6635820865631104 seconds to run, total windows = 908 1.673788070678711 seconds to run, total windows = 914 1.6859591007232666 seconds to run, total windows = 920 1.6935861110687256 seconds to run, total windows = 926 1.7031850814819336 seconds to run, total windows = 932 1.711050033569336 seconds to run, total windows = 938 1.7193701267242432 seconds to run, total windows = 944 1.729081153869629 seconds to run, total windows = 950 1.73604416847229 seconds to run, total windows = 956 1.743283987045288 seconds to run, total windows = 962 1.8118081092834473 seconds to run, total windows = 964 1.81489896774292 seconds to run, total windows = 966 1.8169150352478027 seconds to run, total windows = 968 1.8187880516052246 seconds to run, total windows = 970 1.8210749626159668 seconds to run, total windows = 972 1.8242249488830566 seconds to run, total windows = 974 1.8275630474090576 seconds to run, total windows = 976 1.830873966217041 seconds to run, total windows = 978 1.8329920768737793 seconds to run, total windows = 980 1.8350119590759277 seconds to run, total windows = 982 1.837110996246338 seconds to run, total windows = 984 1.839432954788208 seconds to run, total windows = 986 1.8413121700286865 seconds to run, total windows = 988 1.8439490795135498 seconds to run, total windows = 990 1.8459060192108154 seconds to run, total windows = 992 1.8486881256103516 seconds to run, total windows = 994 1.8528661727905273 seconds to run, total windows = 996 1.8570280075073242 seconds to run, total windows = 998 1.8646190166473389 seconds to run, total windows = 1000 1.8761200904846191 seconds to run, total windows = 1002 1.8913171291351318 seconds to run, total windows = 1004 1.8947601318359375 seconds to run, total windows = 1006 1.8979580402374268 seconds to run, total windows = 1008 1.9007949829101562 seconds to run, total windows = 1010 1.9028961658477783 seconds to run, total windows = 1012 1.904716968536377 seconds to run, total windows = 1014 1.9065301418304443 seconds to run, total windows = 1016 1.9085021018981934 seconds to run, total windows = 1018 1.911241054534912 seconds to run, total windows = 1020 1.9143929481506348 seconds to run, total windows = 1022 1.9381000995635986 seconds to run, total windows = 1022 1.938162088394165 seconds to run, total windows = 1022 1.9381921291351318 seconds to run, total windows = 1022 1.9382209777832031 seconds to run, total windows = 1022 1.9382500648498535 seconds to run, total windows = 1022 1.9382779598236084 seconds to run, total windows = 1022 1.9383060932159424 seconds to run, total windows = 1022 1.9383339881896973 seconds to run, total windows = 1022 1.9383621215820312 seconds to run, total windows = 1022 1.9383931159973145 seconds to run, total windows = 1022 1.9384210109710693 seconds to run, total windows = 1022 1.9384491443634033 seconds to run, total windows = 1022 1.9384760856628418 seconds to run, total windows = 1022 1.9385039806365967 seconds to run, total windows = 1022 1.9385311603546143 seconds to run, total windows = 1022 1.948004961013794 seconds to run, total windows = 1022 1.9480581283569336 seconds to run, total windows = 1022 1.948080062866211 seconds to run, total windows = 1022 1.9481019973754883 seconds to run, total windows = 1022 1.9481229782104492 seconds to run, total windows = 1022 1.9481439590454102 seconds to run, total windows = 1022 0.5792970657348633 seconds to run, total windows = 10 0.5888509750366211 seconds to run, total windows = 20 0.6024110317230225 seconds to run, total windows = 30 0.6151859760284424 seconds to run, total windows = 40 0.6283340454101562 seconds to run, total windows = 50 0.6419188976287842 seconds to run, total windows = 60 0.6592850685119629 seconds to run, total windows = 70 0.6884269714355469 seconds to run, total windows = 80 0.7030270099639893 seconds to run, total windows = 90 0.7178399562835693 seconds to run, total windows = 100 0.7376229763031006 seconds to run, total windows = 110 0.752885103225708 seconds to run, total windows = 120 0.7627270221710205 seconds to run, total windows = 130 0.772874116897583 seconds to run, total windows = 140 0.7846779823303223 seconds to run, total windows = 150 0.7951390743255615 seconds to run, total windows = 160 0.8054399490356445 seconds to run, total windows = 170 0.8176150321960449 seconds to run, total windows = 180 0.8277709484100342 seconds to run, total windows = 190 0.839418888092041 seconds to run, total windows = 200 0.8490209579467773 seconds to run, total windows = 210 0.8587820529937744 seconds to run, total windows = 220 0.8769888877868652 seconds to run, total windows = 230 0.8964741230010986 seconds to run, total windows = 240 0.9074029922485352 seconds to run, total windows = 250 0.9186999797821045 seconds to run, total windows = 260 0.9340629577636719 seconds to run, total windows = 270 0.9483320713043213 seconds to run, total windows = 280 0.9618330001831055 seconds to run, total windows = 290 0.9729840755462646 seconds to run, total windows = 300 0.9864449501037598 seconds to run, total windows = 310 1.0015931129455566 seconds to run, total windows = 320 1.014538049697876 seconds to run, total windows = 330 1.039647102355957 seconds to run, total windows = 340 1.0655651092529297 seconds to run, total windows = 350 1.0787301063537598 seconds to run, total windows = 360 1.0919010639190674 seconds to run, total windows = 370 1.1048650741577148 seconds to run, total windows = 380 1.1181840896606445 seconds to run, total windows = 390 1.1356310844421387 seconds to run, total windows = 400 1.150212049484253 seconds to run, total windows = 410 1.1653571128845215 seconds to run, total windows = 420 1.1823689937591553 seconds to run, total windows = 430 1.202625036239624 seconds to run, total windows = 440 1.220038890838623 seconds to run, total windows = 450 1.2358849048614502 seconds to run, total windows = 460 1.2547829151153564 seconds to run, total windows = 470 1.2699859142303467 seconds to run, total windows = 480 1.2830090522766113 seconds to run, total windows = 490 1.2967529296875 seconds to run, total windows = 500 1.3069241046905518 seconds to run, total windows = 510 1.3167510032653809 seconds to run, total windows = 520 1.3276400566101074 seconds to run, total windows = 530 1.3415000438690186 seconds to run, total windows = 540 1.3530540466308594 seconds to run, total windows = 550 1.3694300651550293 seconds to run, total windows = 560 1.3945400714874268 seconds to run, total windows = 570 1.4094369411468506 seconds to run, total windows = 580 1.4269371032714844 seconds to run, total windows = 590 1.447166919708252 seconds to run, total windows = 600 1.4610741138458252 seconds to run, total windows = 610 1.473966121673584 seconds to run, total windows = 620 1.4863369464874268 seconds to run, total windows = 630 1.5016140937805176 seconds to run, total windows = 640 1.5162479877471924 seconds to run, total windows = 650 1.5332400798797607 seconds to run, total windows = 660 1.5517840385437012 seconds to run, total windows = 670 1.5664949417114258 seconds to run, total windows = 680 1.7777340412139893 seconds to run, total windows = 686 1.7870450019836426 seconds to run, total windows = 692 1.7965679168701172 seconds to run, total windows = 698 1.8076300621032715 seconds to run, total windows = 704 1.8207740783691406 seconds to run, total windows = 710 1.8353500366210938 seconds to run, total windows = 716 1.8476109504699707 seconds to run, total windows = 722 1.858151912689209 seconds to run, total windows = 728 1.8695869445800781 seconds to run, total windows = 734 1.8827109336853027 seconds to run, total windows = 740 1.907485008239746 seconds to run, total windows = 746 1.9241979122161865 seconds to run, total windows = 752 1.9326789379119873 seconds to run, total windows = 758 1.9449450969696045 seconds to run, total windows = 764 1.9614899158477783 seconds to run, total windows = 770 1.9727048873901367 seconds to run, total windows = 776 1.988677978515625 seconds to run, total windows = 782 1.9969170093536377 seconds to run, total windows = 788 2.0057449340820312 seconds to run, total windows = 794 2.017335891723633 seconds to run, total windows = 800 2.039660930633545 seconds to run, total windows = 806 2.0536561012268066 seconds to run, total windows = 812 2.0634748935699463 seconds to run, total windows = 818 2.0733110904693604 seconds to run, total windows = 824 2.0846569538116455 seconds to run, total windows = 830 2.0941810607910156 seconds to run, total windows = 836 2.1035969257354736 seconds to run, total windows = 842 2.1117029190063477 seconds to run, total windows = 848 2.1202590465545654 seconds to run, total windows = 854 2.13039493560791 seconds to run, total windows = 860 2.1405351161956787 seconds to run, total windows = 866 2.1513030529022217 seconds to run, total windows = 872 2.160881996154785 seconds to run, total windows = 878 2.170804023742676 seconds to run, total windows = 884 2.179064989089966 seconds to run, total windows = 890 2.189099073410034 seconds to run, total windows = 896 2.2012500762939453 seconds to run, total windows = 902 2.220405101776123 seconds to run, total windows = 908 2.2311270236968994 seconds to run, total windows = 914 2.2396700382232666 seconds to run, total windows = 920 2.2594430446624756 seconds to run, total windows = 926 2.2686820030212402 seconds to run, total windows = 932 2.2778069972991943 seconds to run, total windows = 938 2.288783073425293 seconds to run, total windows = 944 2.297010898590088 seconds to run, total windows = 950 2.3080499172210693 seconds to run, total windows = 956 2.3141090869903564 seconds to run, total windows = 962 2.3690080642700195 seconds to run, total windows = 964 2.370853900909424 seconds to run, total windows = 966 2.372673988342285 seconds to run, total windows = 968 2.3749430179595947 seconds to run, total windows = 970 2.3767590522766113 seconds to run, total windows = 972 2.3794779777526855 seconds to run, total windows = 974 2.381380081176758 seconds to run, total windows = 976 2.3832409381866455 seconds to run, total windows = 978 2.3851640224456787 seconds to run, total windows = 980 2.3871281147003174 seconds to run, total windows = 982 2.3889191150665283 seconds to run, total windows = 984 2.3908660411834717 seconds to run, total windows = 986 2.39266300201416 seconds to run, total windows = 988 2.394865036010742 seconds to run, total windows = 990 2.39713191986084 seconds to run, total windows = 992 2.3992440700531006 seconds to run, total windows = 994 2.401060104370117 seconds to run, total windows = 996 2.4029641151428223 seconds to run, total windows = 998 2.4060471057891846 seconds to run, total windows = 1000 2.408310890197754 seconds to run, total windows = 1002 2.4101200103759766 seconds to run, total windows = 1004 2.4124460220336914 seconds to run, total windows = 1006 2.414423942565918 seconds to run, total windows = 1008 2.4164679050445557 seconds to run, total windows = 1010 2.4182820320129395 seconds to run, total windows = 1012 2.4200780391693115 seconds to run, total windows = 1014 2.4220659732818604 seconds to run, total windows = 1016 2.423901081085205 seconds to run, total windows = 1018 2.4267020225524902 seconds to run, total windows = 1020 2.430083990097046 seconds to run, total windows = 1022 2.4500789642333984 seconds to run, total windows = 1022 2.450118064880371 seconds to run, total windows = 1022 2.450134038925171 seconds to run, total windows = 1022 2.4501490592956543 seconds to run, total windows = 1022 2.4501640796661377 seconds to run, total windows = 1022 2.4501779079437256 seconds to run, total windows = 1022 2.4501919746398926 seconds to run, total windows = 1022 2.4502060413360596 seconds to run, total windows = 1022 2.4502201080322266 seconds to run, total windows = 1022 2.4502339363098145 seconds to run, total windows = 1022 2.450248956680298 seconds to run, total windows = 1022 2.450263023376465 seconds to run, total windows = 1022 2.450277090072632 seconds to run, total windows = 1022 2.4502909183502197 seconds to run, total windows = 1022 2.4503049850463867 seconds to run, total windows = 1022 2.454763889312744 seconds to run, total windows = 1022 2.4547929763793945 seconds to run, total windows = 1022 2.4548089504241943 seconds to run, total windows = 1022 2.4548239707946777 seconds to run, total windows = 1022 2.4548380374908447 seconds to run, total windows = 1022 2.4548521041870117 seconds to run, total windows = 1022 0.3734018802642822 seconds to run, total windows = 10 0.3916358947753906 seconds to run, total windows = 20 0.41105198860168457 seconds to run, total windows = 30 0.42609405517578125 seconds to run, total windows = 40 0.4414219856262207 seconds to run, total windows = 50 0.4532508850097656 seconds to run, total windows = 60 0.46740198135375977 seconds to run, total windows = 70 0.4830160140991211 seconds to run, total windows = 80 0.5019428730010986 seconds to run, total windows = 90 0.5199110507965088 seconds to run, total windows = 100 0.5369918346405029 seconds to run, total windows = 110 0.552811861038208 seconds to run, total windows = 120 0.5646078586578369 seconds to run, total windows = 130 0.5794188976287842 seconds to run, total windows = 140 0.5958249568939209 seconds to run, total windows = 150 0.608104944229126 seconds to run, total windows = 160 0.6216249465942383 seconds to run, total windows = 170 0.638664960861206 seconds to run, total windows = 180 0.6505000591278076 seconds to run, total windows = 190 0.6660308837890625 seconds to run, total windows = 200 0.6788899898529053 seconds to run, total windows = 210 0.6959049701690674 seconds to run, total windows = 220 0.7112879753112793 seconds to run, total windows = 230 0.7210578918457031 seconds to run, total windows = 240 0.7351698875427246 seconds to run, total windows = 250 0.7512149810791016 seconds to run, total windows = 260 0.7630660533905029 seconds to run, total windows = 270 0.7773690223693848 seconds to run, total windows = 280 0.7910919189453125 seconds to run, total windows = 290 0.8065109252929688 seconds to run, total windows = 300 0.8185460567474365 seconds to run, total windows = 310 0.8322980403900146 seconds to run, total windows = 320 0.847031831741333 seconds to run, total windows = 330 0.8588478565216064 seconds to run, total windows = 340 0.8682188987731934 seconds to run, total windows = 350 0.8808679580688477 seconds to run, total windows = 360 0.8973739147186279 seconds to run, total windows = 370 0.913503885269165 seconds to run, total windows = 380 0.9280879497528076 seconds to run, total windows = 390 0.9439599514007568 seconds to run, total windows = 400 0.9565188884735107 seconds to run, total windows = 410 0.9687368869781494 seconds to run, total windows = 420 0.9842228889465332 seconds to run, total windows = 430 1.0010688304901123 seconds to run, total windows = 440 1.0180339813232422 seconds to run, total windows = 450 1.0336430072784424 seconds to run, total windows = 460 1.0520069599151611 seconds to run, total windows = 470 1.065335988998413 seconds to run, total windows = 480 1.079118013381958 seconds to run, total windows = 490 1.0952749252319336 seconds to run, total windows = 500 1.110698938369751 seconds to run, total windows = 510 1.1257588863372803 seconds to run, total windows = 520 1.1417410373687744 seconds to run, total windows = 530 1.154515027999878 seconds to run, total windows = 540 1.169327974319458 seconds to run, total windows = 550 1.1818349361419678 seconds to run, total windows = 560 1.1965620517730713 seconds to run, total windows = 570 1.2145838737487793 seconds to run, total windows = 580 1.2326409816741943 seconds to run, total windows = 590 1.2448639869689941 seconds to run, total windows = 600 1.2575390338897705 seconds to run, total windows = 610 1.272641897201538 seconds to run, total windows = 620 1.2866740226745605 seconds to run, total windows = 630 1.301584005355835 seconds to run, total windows = 640 1.3152790069580078 seconds to run, total windows = 650 1.3317508697509766 seconds to run, total windows = 660 1.3473608493804932 seconds to run, total windows = 670 1.3585820198059082 seconds to run, total windows = 680 1.613292932510376 seconds to run, total windows = 686 1.6225900650024414 seconds to run, total windows = 692 1.6296229362487793 seconds to run, total windows = 698 1.6375329494476318 seconds to run, total windows = 704 1.6461260318756104 seconds to run, total windows = 710 1.6546988487243652 seconds to run, total windows = 716 1.6781659126281738 seconds to run, total windows = 722 1.6985478401184082 seconds to run, total windows = 728 1.7192790508270264 seconds to run, total windows = 734 1.7338788509368896 seconds to run, total windows = 740 1.7430880069732666 seconds to run, total windows = 746 1.7525269985198975 seconds to run, total windows = 752 1.7600998878479004 seconds to run, total windows = 758 1.7912499904632568 seconds to run, total windows = 764 1.8059158325195312 seconds to run, total windows = 770 1.8121440410614014 seconds to run, total windows = 776 1.8213298320770264 seconds to run, total windows = 782 1.8289909362792969 seconds to run, total windows = 788 1.8347058296203613 seconds to run, total windows = 794 1.8404889106750488 seconds to run, total windows = 800 1.8461790084838867 seconds to run, total windows = 806 1.8521158695220947 seconds to run, total windows = 812 1.857395887374878 seconds to run, total windows = 818 1.8633830547332764 seconds to run, total windows = 824 1.8688979148864746 seconds to run, total windows = 830 1.8749449253082275 seconds to run, total windows = 836 1.8808848857879639 seconds to run, total windows = 842 1.8867409229278564 seconds to run, total windows = 848 1.8929519653320312 seconds to run, total windows = 854 1.9007349014282227 seconds to run, total windows = 860 1.9091880321502686 seconds to run, total windows = 866 1.9154419898986816 seconds to run, total windows = 872 1.9208970069885254 seconds to run, total windows = 878 1.926975965499878 seconds to run, total windows = 884 1.9325330257415771 seconds to run, total windows = 890 1.9381558895111084 seconds to run, total windows = 896 1.944727897644043 seconds to run, total windows = 902 1.9512159824371338 seconds to run, total windows = 908 1.9567968845367432 seconds to run, total windows = 914 1.9625990390777588 seconds to run, total windows = 920 1.9684209823608398 seconds to run, total windows = 926 1.9745938777923584 seconds to run, total windows = 932 1.9803998470306396 seconds to run, total windows = 938 1.985921859741211 seconds to run, total windows = 944 1.9915740489959717 seconds to run, total windows = 950 1.9981110095977783 seconds to run, total windows = 956 2.0054309368133545 seconds to run, total windows = 962 2.0737619400024414 seconds to run, total windows = 964 2.0766899585723877 seconds to run, total windows = 966 2.078589916229248 seconds to run, total windows = 968 2.080374002456665 seconds to run, total windows = 970 2.082479953765869 seconds to run, total windows = 972 2.084373950958252 seconds to run, total windows = 974 2.086287021636963 seconds to run, total windows = 976 2.0880889892578125 seconds to run, total windows = 978 2.0898590087890625 seconds to run, total windows = 980 2.0924558639526367 seconds to run, total windows = 982 2.0945229530334473 seconds to run, total windows = 984 2.096381902694702 seconds to run, total windows = 986 2.09820294380188 seconds to run, total windows = 988 2.1009058952331543 seconds to run, total windows = 990 2.103296995162964 seconds to run, total windows = 992 2.106346845626831 seconds to run, total windows = 994 2.109792947769165 seconds to run, total windows = 996 2.113219976425171 seconds to run, total windows = 998 2.1167759895324707 seconds to run, total windows = 1000 2.119356870651245 seconds to run, total windows = 1002 2.121537923812866 seconds to run, total windows = 1004 2.1233489513397217 seconds to run, total windows = 1006 2.1261038780212402 seconds to run, total windows = 1008 2.1280300617218018 seconds to run, total windows = 1010 2.1303889751434326 seconds to run, total windows = 1012 2.133120059967041 seconds to run, total windows = 1014 2.1349499225616455 seconds to run, total windows = 1016 2.1379239559173584 seconds to run, total windows = 1018 2.140612840652466 seconds to run, total windows = 1020 2.1439549922943115 seconds to run, total windows = 1022 2.160861015319824 seconds to run, total windows = 1022 2.160897970199585 seconds to run, total windows = 1022 2.1609139442443848 seconds to run, total windows = 1022 2.160928964614868 seconds to run, total windows = 1022 2.1609439849853516 seconds to run, total windows = 1022 2.160959005355835 seconds to run, total windows = 1022 2.160972833633423 seconds to run, total windows = 1022 2.16098690032959 seconds to run, total windows = 1022 2.161000967025757 seconds to run, total windows = 1022 2.161015033721924 seconds to run, total windows = 1022 2.1610288619995117 seconds to run, total windows = 1022 2.1610429286956787 seconds to run, total windows = 1022 2.1610569953918457 seconds to run, total windows = 1022 2.161069869995117 seconds to run, total windows = 1022 2.161083936691284 seconds to run, total windows = 1022 2.1652660369873047 seconds to run, total windows = 1022 2.16532301902771 seconds to run, total windows = 1022 2.165355920791626 seconds to run, total windows = 1022 2.165386915206909 seconds to run, total windows = 1022 2.1654179096221924 seconds to run, total windows = 1022 2.16546893119812 seconds to run, total windows = 1022 0.3200531005859375 seconds to run, total windows = 10 0.3305540084838867 seconds to run, total windows = 20 0.34421610832214355 seconds to run, total windows = 30 0.3544750213623047 seconds to run, total windows = 40 0.36443305015563965 seconds to run, total windows = 50 0.3736541271209717 seconds to run, total windows = 60 0.38393497467041016 seconds to run, total windows = 70 0.39404892921447754 seconds to run, total windows = 80 0.4051680564880371 seconds to run, total windows = 90 0.41744208335876465 seconds to run, total windows = 100 0.42977094650268555 seconds to run, total windows = 110 0.44490694999694824 seconds to run, total windows = 120 0.4551680088043213 seconds to run, total windows = 130 0.46547603607177734 seconds to run, total windows = 140 0.47884511947631836 seconds to run, total windows = 150 0.4882071018218994 seconds to run, total windows = 160 0.4976179599761963 seconds to run, total windows = 170 0.5066931247711182 seconds to run, total windows = 180 0.5179259777069092 seconds to run, total windows = 190 0.5292971134185791 seconds to run, total windows = 200 0.5408339500427246 seconds to run, total windows = 210 0.5533571243286133 seconds to run, total windows = 220 0.5633080005645752 seconds to run, total windows = 230 0.5784430503845215 seconds to run, total windows = 240 0.6039891242980957 seconds to run, total windows = 250 0.6207399368286133 seconds to run, total windows = 260 0.6378629207611084 seconds to run, total windows = 270 0.6550850868225098 seconds to run, total windows = 280 0.6694469451904297 seconds to run, total windows = 290 0.686363935470581 seconds to run, total windows = 300 0.7026429176330566 seconds to run, total windows = 310 0.7170181274414062 seconds to run, total windows = 320 0.7335169315338135 seconds to run, total windows = 330 0.750715970993042 seconds to run, total windows = 340 0.7631680965423584 seconds to run, total windows = 350 0.7778239250183105 seconds to run, total windows = 360 0.788715124130249 seconds to run, total windows = 370 0.7992489337921143 seconds to run, total windows = 380 0.8138060569763184 seconds to run, total windows = 390 0.8292489051818848 seconds to run, total windows = 400 0.8468990325927734 seconds to run, total windows = 410 0.8665719032287598 seconds to run, total windows = 420 0.8785641193389893 seconds to run, total windows = 430 0.8917601108551025 seconds to run, total windows = 440 0.906343936920166 seconds to run, total windows = 450 0.9205479621887207 seconds to run, total windows = 460 0.9376189708709717 seconds to run, total windows = 470 0.9562320709228516 seconds to run, total windows = 480 0.9754369258880615 seconds to run, total windows = 490 0.9934899806976318 seconds to run, total windows = 500 1.006505012512207 seconds to run, total windows = 510 1.017453908920288 seconds to run, total windows = 520 1.032715082168579 seconds to run, total windows = 530 1.0468981266021729 seconds to run, total windows = 540 1.0671601295471191 seconds to run, total windows = 550 1.0857999324798584 seconds to run, total windows = 560 1.09779691696167 seconds to run, total windows = 570 1.1148529052734375 seconds to run, total windows = 580 1.1311371326446533 seconds to run, total windows = 590 1.157278060913086 seconds to run, total windows = 600 1.1765880584716797 seconds to run, total windows = 610 1.1881909370422363 seconds to run, total windows = 620 1.2036139965057373 seconds to run, total windows = 630 1.215775966644287 seconds to run, total windows = 640 1.231593132019043 seconds to run, total windows = 650 1.2483699321746826 seconds to run, total windows = 660 1.2658190727233887 seconds to run, total windows = 670 1.2812070846557617 seconds to run, total windows = 680 1.4662930965423584 seconds to run, total windows = 686 1.4772980213165283 seconds to run, total windows = 692 1.4870901107788086 seconds to run, total windows = 698 1.4959399700164795 seconds to run, total windows = 704 1.5056219100952148 seconds to run, total windows = 710 1.5157201290130615 seconds to run, total windows = 716 1.52394700050354 seconds to run, total windows = 722 1.5335869789123535 seconds to run, total windows = 728 1.5410850048065186 seconds to run, total windows = 734 1.5501039028167725 seconds to run, total windows = 740 1.560948133468628 seconds to run, total windows = 746 1.5708110332489014 seconds to run, total windows = 752 1.58144211769104 seconds to run, total windows = 758 1.591831922531128 seconds to run, total windows = 764 1.5977940559387207 seconds to run, total windows = 770 1.6053130626678467 seconds to run, total windows = 776 1.6152160167694092 seconds to run, total windows = 782 1.624392032623291 seconds to run, total windows = 788 1.6340899467468262 seconds to run, total windows = 794 1.639657974243164 seconds to run, total windows = 800 1.649946928024292 seconds to run, total windows = 806 1.6578640937805176 seconds to run, total windows = 812 1.6652960777282715 seconds to run, total windows = 818 1.6811890602111816 seconds to run, total windows = 824 1.69051194190979 seconds to run, total windows = 830 1.7005069255828857 seconds to run, total windows = 836 1.7169411182403564 seconds to run, total windows = 842 1.722923994064331 seconds to run, total windows = 848 1.732846975326538 seconds to run, total windows = 854 1.7396700382232666 seconds to run, total windows = 860 1.7500529289245605 seconds to run, total windows = 866 1.7612581253051758 seconds to run, total windows = 872 1.7713940143585205 seconds to run, total windows = 878 1.782120943069458 seconds to run, total windows = 884 1.7930350303649902 seconds to run, total windows = 890 1.8025989532470703 seconds to run, total windows = 896 1.813776969909668 seconds to run, total windows = 902 1.8206090927124023 seconds to run, total windows = 908 1.8270599842071533 seconds to run, total windows = 914 1.832482099533081 seconds to run, total windows = 920 1.8491559028625488 seconds to run, total windows = 926 1.8600621223449707 seconds to run, total windows = 932 1.8684680461883545 seconds to run, total windows = 938 1.8778069019317627 seconds to run, total windows = 944 1.8885140419006348 seconds to run, total windows = 950 1.8961849212646484 seconds to run, total windows = 956 1.9027459621429443 seconds to run, total windows = 962 1.9876010417938232 seconds to run, total windows = 964 1.9893970489501953 seconds to run, total windows = 966 1.9911730289459229 seconds to run, total windows = 968 1.9939920902252197 seconds to run, total windows = 970 1.9962029457092285 seconds to run, total windows = 972 1.9994981288909912 seconds to run, total windows = 974 2.001621961593628 seconds to run, total windows = 976 2.0047659873962402 seconds to run, total windows = 978 2.0075700283050537 seconds to run, total windows = 980 2.0113070011138916 seconds to run, total windows = 982 2.0146191120147705 seconds to run, total windows = 984 2.0185859203338623 seconds to run, total windows = 986 2.022763967514038 seconds to run, total windows = 988 2.028244972229004 seconds to run, total windows = 990 2.031524896621704 seconds to run, total windows = 992 2.034291982650757 seconds to run, total windows = 994 2.037121057510376 seconds to run, total windows = 996 2.0411829948425293 seconds to run, total windows = 998 2.047360897064209 seconds to run, total windows = 1000 2.050493001937866 seconds to run, total windows = 1002 2.0538179874420166 seconds to run, total windows = 1004 2.057013988494873 seconds to run, total windows = 1006 2.0621590614318848 seconds to run, total windows = 1008 2.065464973449707 seconds to run, total windows = 1010 2.0687201023101807 seconds to run, total windows = 1012 2.072068929672241 seconds to run, total windows = 1014 2.0753190517425537 seconds to run, total windows = 1016 2.079047918319702 seconds to run, total windows = 1018 2.082435131072998 seconds to run, total windows = 1020 2.0855469703674316 seconds to run, total windows = 1022 2.11136794090271 seconds to run, total windows = 1022 2.1115500926971436 seconds to run, total windows = 1022 2.111570119857788 seconds to run, total windows = 1022 2.111586093902588 seconds to run, total windows = 1022 2.111603021621704 seconds to run, total windows = 1022 2.1116180419921875 seconds to run, total windows = 1022 2.1116349697113037 seconds to run, total windows = 1022 2.1116509437561035 seconds to run, total windows = 1022 2.1116669178009033 seconds to run, total windows = 1022 2.1116831302642822 seconds to run, total windows = 1022 2.111699104309082 seconds to run, total windows = 1022 2.1117141246795654 seconds to run, total windows = 1022 2.1117300987243652 seconds to run, total windows = 1022 2.111746072769165 seconds to run, total windows = 1022 2.1117610931396484 seconds to run, total windows = 1022 2.118878126144409 seconds to run, total windows = 1022 2.11893892288208 seconds to run, total windows = 1022 2.118972063064575 seconds to run, total windows = 1022 2.119004011154175 seconds to run, total windows = 1022 2.1190359592437744 seconds to run, total windows = 1022 2.1190669536590576 seconds to run, total windows = 1022
--------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-151-15f0c3c478f7> in <module>() 134 135 fig = plt.figure(figsize=(12,24)) --> 136 visualize(fig, 8, 2, out_images, out_titles) <ipython-input-114-f928ac6898f6> in visualize(fig, rows, cols, imgs, titles) 2 def visualize(fig, rows, cols, imgs, titles): 3 for i, img in enumerate(imgs): ----> 4 plt.subplot(rows, cols, i+1) 5 plt.title(i+1) 6 img_dims = len(img.shape) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/matplotlib/pyplot.py in subplot(*args, **kwargs) 1028 1029 fig = gcf() -> 1030 a = fig.add_subplot(*args, **kwargs) 1031 bbox = a.bbox 1032 byebye = [] /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/matplotlib/figure.py in add_subplot(self, *args, **kwargs) 1003 self._axstack.remove(ax) 1004 -> 1005 a = subplot_class_factory(projection_class)(self, *args, **kwargs) 1006 1007 self._axstack.add(key, a) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/matplotlib/axes/_subplots.py in __init__(self, fig, *args, **kwargs) 62 raise ValueError( 63 "num must be 1 <= num <= {maxn}, not {num}".format( ---> 64 maxn=rows*cols, num=num)) 65 self._subplotspec = GridSpec(rows, cols)[int(num) - 1] 66 # num - 1 for converting from MATLAB to python indexing ValueError: num must be 1 <= num <= 16, not 17
# Define a single function that can extract features using hog sub-sampling and make predictions
def find_cars(img, ystart=SW_YSTART,
ystop=SW_YSTOP,
scale=SW_SCALES,
svc=SVC,
X_scaler=X_SCALER,
orient=HOG_ORIENTATIONS,
pix_per_cell=HOG_PIXELS_PER_CELL,
cell_per_block=HOG_CELLS_PER_BLOCK,
spatial_size=BIN_SPATIAL_SIZE,
hist_bins=HIST_NBINS,
spatial_feat=SW_SPATIAL_FEAT_FLAG,
hog_feat=SW_HOG_FEAT_FLAG,
hist_feat=SW_COLOR_HIST_FEAT_FLAG):
# If y start/stop positions not defined, set to image size
if ystart == None or ystart < 0:
ystart = 384
if ystop == None or ystop > img.shape[0]:
ystop = img.shape[0]
draw_img = np.copy(img)
denormalized_img = denormalize_pixels(img)
#Make a heatmap of zeros
heatmap = np.zeros_like(denormalized_img[:,:,0])
img_to_search = denormalized_img[ystart:ystop,:,:]
ctrans_tosearch = convert_color(img_to_search, conv=SW_CONVERT_COLOR)
# For each scale
if type(scale) == 'float':
scale = [scale]
for scle in scale:
if scle != 1:
imshape = ctrans_tosearch.shape
ctrans_tosearch = cv2.resize(ctrans_tosearch, (np.int(imshape[1]/scle), np.int(imshape[0]/scle)))
ch1 = ctrans_tosearch[:,:,0]
ch2 = ctrans_tosearch[:,:,1]
ch3 = ctrans_tosearch[:,:,2]
# Define blocks and steps as above
nxblocks = (ch1.shape[1] // pix_per_cell)-1
nyblocks = (ch1.shape[0] // pix_per_cell)-1
nfeat_per_block = orient*cell_per_block**2
window = 64 # 8 cells and 8 pix per cell
nblocks_per_window = (window // pix_per_cell)-1 # The // division is used for integers (for indices)
cells_per_step = 1 # HOG_CELLS_PER_BLOCK # Instead of overlap, define how many cells to step
nxsteps = (nxblocks - nblocks_per_window) // cells_per_step # The // division is used for integers (for indices)
nysteps = (nyblocks - nblocks_per_window) // cells_per_step # The // division is used for integers (for indices)
# Compute individual channel HOG features for the entire image
hog1 = get_hog_features(ch1, orient, pix_per_cell, cell_per_block, feature_vec=False)
hog2 = get_hog_features(ch2, orient, pix_per_cell, cell_per_block, feature_vec=False)
hog3 = get_hog_features(ch3, orient, pix_per_cell, cell_per_block, feature_vec=False)
for xb in range(nxsteps):
for yb in range(nysteps):
ypos = yb*cells_per_step
xpos = xb*cells_per_step
# Extract HOG for this particular patch
hog_feat1 = hog1[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_feat2 = hog2[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_feat3 = hog3[ypos:ypos+nblocks_per_window, xpos:xpos+nblocks_per_window].ravel()
hog_features = np.hstack((hog_feat1, hog_feat2, hog_feat3))
xleft = xpos*pix_per_cell
ytop = ypos*pix_per_cell
# Extract the image patch
subimg = cv2.resize(ctrans_tosearch[ytop:ytop+window, xleft:xleft+window], (DEFAULT_LENGTH, DEFAULT_WIDTH))
# Get color features
if SW_SPATIAL_FEAT_FLAG == True:
spatial_features = bin_spatial(subimg, size=BIN_SPATIAL_SIZE)
if SW_COLOR_HIST_FEAT_FLAG == True:
hist_features = color_hist(subimg, nbins=HIST_NBINS)
# Append the new feature vector to the features list
# Allow for flagged setting of feature vectors (spatial, hist, hog) must maintain the ordering
if(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((spatial_features, hist_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((hist_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == True):
test_feats = np.hstack((spatial_features, hog_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == False and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((spatial_features))
elif(SW_SPATIAL_FEAT_FLAG == True and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((spatial_features, hist_features))
elif(SW_SPATIAL_FEAT_FLAG == False and SW_COLOR_HIST_FEAT_FLAG == True and SW_HOG_FEAT_FLAG == False):
test_feats = np.hstack((hist_features))
else:
test_feats = np.hstack((np.ravel(img)))
# Scale features and make a prediction
test_features = X_scaler.transform(test_feats.reshape(1, -1))
test_prediction = svc.predict(test_features)
## Check against classifier ##
if test_prediction == 1:
xbox_left = np.int(xleft*scle)
ytop_draw = np.int(ytop*scle)
win_draw = np.int(window*scle)
cv2.rectangle(draw_img,(xbox_left, ytop_draw+ystart),
(xbox_left+win_draw, ytop_draw+win_draw+ystart),BBOX_COLOR,BBOX_THICK)
heatmap[ytop_draw+ystart:ytop_draw+win_draw+ystart, xbox_left:xbox_left+win_draw] +=1
return draw_img, heatmap
# DEFINE A CLASS TO RECEIVE THE CHARACTERISTICS OF EACH VEHICLE DETECTION
# Objects defined as "Vehicles" will be where multiple overlaping detections exists in the heatmap
class Vehicle():
def __init__(self, bbox):
car_lens = [car.car_number for car in carslist]
if len(car_lens) > 0:
self.car_number = np.max(car_lens) + 1
else: self.car_number = 0
self.prev_detected = False # Flag sets if the Vehicle was detected in the last iteration
self.cur_detected = True # Flag sets if the Vehicle is detected in the current iteration
self.n_detections = 1 # number of times this vehicle has been detected
self.n_non_detections = 0 # number of consecutive times this vehicle has not been detected
self.xpixels = np.arange(bbox[0][0], bbox[1][0]+1) # Pixel x values of last detection
self.ypixels = np.arange(bbox[0][1], bbox[1][1]+1) # Pixel y values of last detection
self.recent_xfitted = []
self.recent_xfitted.append(bbox[0][0]) # x position of the last n fits of the bounding box
self.bestx = bbox[0][0] # X position of the current fit
self.recent_yfitted = []
self.recent_yfitted.append(bbox[0][1]) # Y position of the last n fits of the bounding box
self.besty = bbox[0][1] # Average y position of the current fit
self.recent_wfitted = []
self.recent_wfitted.append(bbox[1][0])
self.bestw = bbox[1][0] # Average width of the last n fits
self.recent_hfitted = []
self.recent_hfitted.append(bbox[1][1]) # Height of the last n fits of the bounding box
self.besth = bbox[1][1] # Average height of the last n fits
self.bounding_box = bbox
# Define a function that Implements Smoothing Factor for Multi-Fram Object Tracking
def draw_multi_frame_labeled_bboxes(img, labels, smoothing_factor=1, keep_weight=15, remove_threshold = 15, debug=False):
noisy_pix_thresh= 4e2
img = np.copy(img)
# Set all cur_detected values to false for current frame
for car in carslist:
car.cur_detected = False
for label in labels:
# Iterate through all detected labels
for car_number in range(1, label[1] + 1):
# Find pixels with each car_number label value
nonzero = (label[0] == car_number).nonzero()
# Identify x and y values of those pixels
nonzeroy = np.array(nonzero[0])
nonzerox = np.array(nonzero[1])
# Define a bounding box based on min/max x and y
bbox = ((np.min(nonzerox), np.min(nonzeroy)), (np.max(nonzerox), np.max(nonzeroy)))
# Check if bounding box appears in carslist
found_match = False
for car in carslist:
# Create comparison matrix
bbox_flatten = []
bbox_flatten.append(bbox[0])
bbox_flatten.append(bbox[1])
bbox_flatten = [x for xs in bbox_flatten for x in xs]
car_bbox_flat = []
car_bbox_flat.append(car.bounding_box[0])
car_bbox_flat.append(car.bounding_box[1])
car_bbox_flat = [x for xs in car_bbox_flat for x in xs]
if(np.allclose(bbox_flatten, car_bbox_flat, atol=13)):
found_match = True
if debug:
print('Found a match. Car Bounding Box', car.bounding_box, '| length nonzerox:',len(nonzerox),
'| length nonzeroy:',len(nonzeroy))
print('Checked against Bounding box:',bbox)
car.n_detections += 1
car.prev_detected = found_match
car.cur_detected = found_match
car.n_non_detections = 0 # Reset non_detections value
car.xpixels = nonzerox # Pixel x values of current detection
car.ypixels = nonzeroy # Pixel y values of current detection
car.recent_xfitted.append(bbox[0][0])
car.bestx = int(np.mean(car.recent_xfitted)*.25 + bbox[0][0]*.75) # Average x position of the last n fits
car.recent_yfitted.append(bbox[0][1]) # Y position of the last n fits of the bounding box
car.besty = int(np.mean(car.recent_yfitted)*.25 + bbox[0][1]*.75) # Average y position of the current fit
car.recent_wfitted.append(bbox[1][0])
car.bestw = int(np.mean(car.recent_wfitted)*.25 + bbox[1][0]*.75) # Average width of the last n fits
car.recent_hfitted.append(bbox[1][1]) # Height of the last n fits of the bounding box
car.besth = int(np.mean(car.recent_hfitted)*.25 + bbox[1][1]*.75) # Average height of the last n fits
car.bounding_box = ((car.bestx, car.besty),
(car.bestw, car.besth))
break
# After searching for existing car, add new Vehicle
if found_match == False and len(nonzerox) > noisy_pix_thresh and len(nonzeroy) < 1e5:
# Add New Vehicle
car = Vehicle(bbox)
car.xpixels = nonzerox
car.ypixels = nonzeroy
car.n_non_detections +=1
car.prev_detected = found_match
car.cur_detected = True
# Add car to carslist
carslist.append(car)
# After searching through labels and updating carslist, draw labels
for car in carslist:
## Remove Stale cars ##
car_lens = [car.car_number for car in carslist]
if len(car_lens) > 0:
max_car_number = np.max(car_lens)
min_car_number = np.min(car_lens)
else:
max_car_number = 1
min_car_number = 0
if (car.n_non_detections >= remove_threshold \
or len(car.xpixels) < noisy_pix_thresh
or (np.abs(max_car_number - car.car_number) > keep_weight and \
car.cur_detected == False and car.prev_detected == False) and
car.n_non_detections > 3):
if debug:
print('Removing Car:', car.bounding_box)
print('Carlist now has size:', len(carslist))
carslist.remove(car)
# Set n_non_detections+=1 for each car in carslist that wasn't prev_detected
if (car.prev_detected == True and car.cur_detected == False):
if debug:
print('Found possible false positive for car:', car.bounding_box, 'checking against smoothing factor')
print( 'Car number:', car.car_number)
car.prev_detected == False
car.n_non_detections +=1
## Apply noise filtering to object detections
#Process cars within the smoothing factor range
if (car.n_detections >= smoothing_factor//2 \
and car.n_detections > car.n_non_detections #prev had this as an or
and len(car.xpixels) > noisy_pix_thresh
and len(car.ypixels) < 1e5):
cv2.rectangle(img, car.bounding_box[0], car.bounding_box[1], BBOX_COLOR, BBOX_THICK)
# Return the image
return img
# Calibration Constants #
IMAGE_EXTENSION = '.jpg'
CALIBRATION_DIRECTORY = 'camera_cal/'
CALIBRATION_PREFIX = 'corners_found'
calibration_path = "{}{}{}".format(DATACACHE_DIRECTORY, CALIBRATION_DIRECTORY, '*'+IMAGE_EXTENSION)
dist_pickle_file = os.path.join(DATACACHE_DIRECTORY, "calibration_pickle.p")
CHESSBOARD_SIZE = (9,6)
# Calibrate the camera using a 9x6 checkerboard
objp = np.zeros((CHESSBOARD_SIZE[1]*CHESSBOARD_SIZE[0], 3), np.float32)
objp[:,:2] = np.mgrid[0:CHESSBOARD_SIZE[0], 0:CHESSBOARD_SIZE[1]].T.reshape(-1, 2)
# Arrays to store object points and image points from all the images
objpoints = [] # 3-Dim points in real-world space
imgpoints = [] # 2-Dim points in virtual image plane
# Load Calibration Images
calibration_images = glob.glob(calibration_path, recursive=True)
# Walk through images and search for checkerboard corners
for idx, fname in enumerate(calibration_images):
img = mpimg.imread(fname)
gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
# Find the checkerboard corners
ret, corners = cv2.findChessboardCorners(gray, CHESSBOARD_SIZE, None)
# If found, add object points, image points
if ret == True:
print('Calibrating image:', fname)
imgpoints.append(corners)
objpoints.append(objp)
# Draw and display found corners
cv2.drawChessboardCorners(img, CHESSBOARD_SIZE, corners, ret)
output_img_path = "{}{}{}{}{}".format(DATACACHE_DIRECTORY, CALIBRATION_DIRECTORY, CALIBRATION_PREFIX
,str(idx), IMAGE_EXTENSION)
print('Saving Calibrated image:', output_img_path)
os.makedirs(os.path.join(DATACACHE_DIRECTORY, CALIBRATION_DIRECTORY), exist_ok=True)
cv2.imwrite(output_img_path, img)
Calibrating image: data/datacache/camera_cal/calibration10.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found1.jpg Calibrating image: data/datacache/camera_cal/calibration11.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found2.jpg Calibrating image: data/datacache/camera_cal/calibration12.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found3.jpg Calibrating image: data/datacache/camera_cal/calibration13.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found4.jpg Calibrating image: data/datacache/camera_cal/calibration14.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found5.jpg Calibrating image: data/datacache/camera_cal/calibration15.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found6.jpg Calibrating image: data/datacache/camera_cal/calibration16.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found7.jpg Calibrating image: data/datacache/camera_cal/calibration17.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found8.jpg Calibrating image: data/datacache/camera_cal/calibration18.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found9.jpg Calibrating image: data/datacache/camera_cal/calibration19.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found10.jpg Calibrating image: data/datacache/camera_cal/calibration2.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found11.jpg Calibrating image: data/datacache/camera_cal/calibration20.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found12.jpg Calibrating image: data/datacache/camera_cal/calibration3.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found13.jpg Calibrating image: data/datacache/camera_cal/calibration6.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found16.jpg Calibrating image: data/datacache/camera_cal/calibration7.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found17.jpg Calibrating image: data/datacache/camera_cal/calibration8.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found18.jpg Calibrating image: data/datacache/camera_cal/calibration9.jpg Saving Calibrated image: data/datacache/camera_cal/corners_found19.jpg
# Load image for reference
if os.path.exists(dist_pickle_file):
dist_pickle = pickle.load( open(dist_pickle_file, "rb"))
else:
dist_pickle = {}
img = cv2.imread(calibration_images[1])
img_size = (img.shape[1], img.shape[0])
# Perform calibration given object points and image points
if ("mtx" in dist_pickle and "dist" in dist_pickle):
mtx = dist_pickle["mtx"]
dist = dist_pickle["dist"]
else:
ret, mtx, dist, _, _ = cv2.calibrateCamera(objpoints, imgpoints, img_size, None, None)
# Save camera calibration result data
dist_pickle = {}
dist_pickle["mtx"] = mtx
dist_pickle["dist"] = dist
pickle.dump(dist_pickle, open(dist_pickle_file, "wb"))
# Read in the saved objpoints and imgpoints
dist_pickle = pickle.load( open(dist_pickle_file, "rb"))
mtx = dist_pickle["mtx"]
dist = dist_pickle["dist"]
def process_image(img):
if (img is not None):
labels = []
carslist = []
bboxes = []
SMOOTHING_FACTOR = 13
if (len(CARS_PREV_FRAMES) > SMOOTHING_FACTOR):
flattened_carslist = np.ravel(lambda x,y: x+y, CARS_PREV_FRAMES[:-SMOOTHING_FACTOR])
CARS_PREV_FRAMES.remove(CARS_PREV_FRAMES[0])
else:
flattened_carslist = np.ravel(lambda x,y: x+y, CARS_PREV_FRAMES)
# Search for cars from previous frame Gather previous bboxes from carslist
heatmap_1 = np.zeros_like(img[:,:,2])
heatmap_2 = np.zeros_like(img[:,:,2])
heatmap_3 = np.zeros_like(img[:,:,2])
img = cv2.undistort(img, mtx, dist, None, mtx)
## Search for previously detected cars in current frame ##
for car_ind in range(0, len(flattened_carslist)-1):
if flattened_carslist[car_ind].n_non_detections == 0:
bboxes.append(list(flattened_carslist[car_ind].bounding_box)) # Grab previous frames for feedback loop
detected_cars_threshold = SMOOTHING_FACTOR # Divide by two to account for error
_, heatmap_1 = search_windows(img, bboxes)
labels.append(label(apply_threshold(heatmap_1, detected_cars_threshold)))
## Detect with HOG subsampling ##
hog_subsampling_threshold = 3
_, heatmap_2 = find_cars(img, ystart=SW_YSTART, ystop=SW_YSTOP, scale=SW_SCALES)
labels.append(label(apply_threshold(heatmap_2, hog_subsampling_threshold)))
## Detect with Sliding Windows ##
sliding_windows_threshold = 4
windows = slide_windows(img, x_start_stops=SW_XSTART_STOPS,
y_start_stops=SW_YSTART_STOPS,
xy_windows=SW_XY_WINDOWS,
xy_overlaps=SW_XY_OVERLAPS)
_, heatmap_3 = search_windows(img, windows)
labels.append(label(apply_threshold(heatmap_3, sliding_windows_threshold)))
combined_threshold = 1
combined_heatmap = cv2.add(heatmap_1, heatmap_2, heatmap_3)
labels.append(label(apply_threshold(combined_heatmap, combined_threshold)))
draw_img = draw_multi_frame_labeled_bboxes(img, labels, smoothing_factor=SMOOTHING_FACTOR, debug=True)
CARS_PREV_FRAMES.append(carslist)
return draw_img
else:
return img
#Import packages to edit/save/watch video clips
from moviepy.editor import VideoFileClip
from IPython.display import HTML
test_ouput = 'test_output.mp4'
VIDEO_OUTPUT_PATH = os.path.join(WORKING_DIRECTORY, test_ouput)
TEST_VIDEO = 'test_video.mp4'
VIDEO_FILE_PATH = os.path.join(WORKING_DIRECTORY, TEST_VIDEO)
clip = VideoFileClip(VIDEO_FILE_PATH)
CARS_PREV_FRAMES = []
test_clip = clip.fl_image(process_image)
#%time
test_clip.write_videofile(VIDEO_OUTPUT_PATH, audio=False)
clip = VideoFileClip(VIDEO_FILE_PATH)
CARS_PREV_FRAMES = None
HTML("""
<video width="960" height="540" controls>
<source src="{0}">
</video>
""".format(VIDEO_OUTPUT_PATH))
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9 [MoviePy] >>>> Building video data/test_output.mp4 [MoviePy] Writing video data/test_output.mp4
3%|▎ | 1/39 [00:06<04:03, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
5%|▌ | 2/39 [00:12<03:55, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
8%|▊ | 3/39 [00:18<03:44, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
10%|█ | 4/39 [00:24<03:35, 6.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117856 | length nonzeroy: 117856 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
13%|█▎ | 5/39 [00:30<03:24, 6.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
15%|█▌ | 6/39 [00:35<03:14, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
18%|█▊ | 7/39 [00:41<03:08, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
21%|██ | 8/39 [00:47<03:04, 5.96s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119232 | length nonzeroy: 119232 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
23%|██▎ | 9/39 [00:53<02:52, 5.75s/it]
Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
26%|██▌ | 10/39 [00:59<02:48, 5.79s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
28%|██▊ | 11/39 [01:04<02:41, 5.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
31%|███ | 12/39 [01:10<02:38, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
33%|███▎ | 13/39 [01:16<02:33, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
36%|███▌ | 14/39 [01:22<02:25, 5.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
38%|███▊ | 15/39 [01:28<02:17, 5.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((304, 436), (347, 479)) Carlist now has size: 11 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 6 Removing Car: ((320, 488), (347, 531)) Carlist now has size: 10 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 9
41%|████ | 16/39 [01:33<02:11, 5.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((356, 436), (399, 479)) Carlist now has size: 9 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 7
44%|████▎ | 17/39 [01:39<02:09, 5.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
46%|████▌ | 18/39 [01:47<02:12, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
49%|████▊ | 19/39 [01:53<02:04, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118896 | length nonzeroy: 118896 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████▏ | 20/39 [01:59<01:58, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118896 | length nonzeroy: 118896 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 21/39 [02:06<01:55, 6.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118896 | length nonzeroy: 118896 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▋ | 22/39 [02:14<01:55, 6.79s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118480 | length nonzeroy: 118480 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 23/39 [02:19<01:43, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 24/39 [02:26<01:36, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 25/39 [02:31<01:26, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118368 | length nonzeroy: 118368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 26/39 [02:37<01:18, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118368 | length nonzeroy: 118368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 27/39 [02:44<01:17, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118304 | length nonzeroy: 118304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 28/39 [02:50<01:08, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118304 | length nonzeroy: 118304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 29/39 [02:56<01:02, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117360 | length nonzeroy: 117360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
77%|███████▋ | 30/39 [03:03<00:56, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117360 | length nonzeroy: 117360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
79%|███████▉ | 31/39 [03:09<00:49, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116944 | length nonzeroy: 116944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
82%|████████▏ | 32/39 [03:15<00:43, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106752 | length nonzeroy: 106752 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((304, 488), (347, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
85%|████████▍ | 33/39 [03:22<00:38, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108256 | length nonzeroy: 108256 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
87%|████████▋ | 34/39 [03:29<00:33, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108256 | length nonzeroy: 108256 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((320, 488), (347, 531)) | length nonzerox: 1232 | length nonzeroy: 1232 Checked against Bounding box: ((320, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
90%|████████▉ | 35/39 [03:37<00:28, 7.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108256 | length nonzeroy: 108256 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((320, 488), (347, 531)) | length nonzerox: 1232 | length nonzeroy: 1232 Checked against Bounding box: ((320, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
92%|█████████▏| 36/39 [03:44<00:20, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108256 | length nonzeroy: 108256 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((320, 488), (347, 531)) | length nonzerox: 1232 | length nonzeroy: 1232 Checked against Bounding box: ((320, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
95%|█████████▍| 37/39 [03:51<00:13, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 97600 | length nonzeroy: 97600 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((320, 488), (347, 531)) | length nonzerox: 1232 | length nonzeroy: 1232 Checked against Bounding box: ((320, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
97%|█████████▋| 38/39 [03:59<00:07, 7.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (347, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((304, 436), (347, 479)) Found a match. Car Bounding Box ((356, 436), (399, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((356, 436), (399, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107840 | length nonzeroy: 107840 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((320, 488), (347, 531)) | length nonzerox: 1232 | length nonzeroy: 1232 Checked against Bounding box: ((320, 488), (347, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8
[MoviePy] Done. [MoviePy] >>>> Video ready: data/test_output.mp4
project_ouput = 'project_output_no_yolo.mp4'
PROJECT_VIDEO = 'project_video.mp4'
VIDEO_FILE_PATH = os.path.join(WORKING_DIRECTORY, PROJECT_VIDEO)
VIDEO_OUTPUT_PATH = os.path.join(WORKING_DIRECTORY, project_ouput)
CARS_PREV_FRAMES = []
clip = VideoFileClip(VIDEO_FILE_PATH)
project_clip = clip.fl_image(process_image)
project_clip.write_videofile(VIDEO_OUTPUT_PATH, audio=False)
CARS_PREV_FRAMES = None
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13 [MoviePy] >>>> Building video data/project_output.mp4 [MoviePy] Writing video data/project_output.mp4
0%| | 1/1261 [00:06<2:17:36, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
0%| | 2/1261 [00:12<2:14:46, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114240 | length nonzeroy: 114240 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
0%| | 3/1261 [00:19<2:19:46, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118048 | length nonzeroy: 118048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
0%| | 4/1261 [00:27<2:25:13, 6.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118048 | length nonzeroy: 118048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
0%| | 5/1261 [00:34<2:23:01, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118048 | length nonzeroy: 118048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
0%| | 6/1261 [00:41<2:26:27, 7.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 7/1261 [00:47<2:22:39, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 8/1261 [00:53<2:16:35, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 9/1261 [01:00<2:15:38, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118048 | length nonzeroy: 118048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((304, 488), (347, 531)) Carlist now has size: 11 Found possible false positive for car: ((304, 488), (347, 531)) checking against smoothing factor Car number: 8 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 10/1261 [01:06<2:14:06, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117184 | length nonzeroy: 117184 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 11/1261 [01:12<2:13:41, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117184 | length nonzeroy: 117184 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 12/1261 [01:20<2:19:25, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117184 | length nonzeroy: 117184 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 13/1261 [01:25<2:12:07, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117664 | length nonzeroy: 117664 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 14/1261 [01:32<2:14:20, 6.46s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115040 | length nonzeroy: 115040 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%| | 15/1261 [01:39<2:15:41, 6.53s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110944 | length nonzeroy: 110944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((304, 436), (347, 479)) Carlist now has size: 10 Found possible false positive for car: ((304, 436), (347, 479)) checking against smoothing factor Car number: 11 Removing Car: ((320, 488), (347, 531)) Carlist now has size: 9 Found possible false positive for car: ((320, 488), (347, 531)) checking against smoothing factor Car number: 13
1%|▏ | 16/1261 [01:45<2:12:42, 6.40s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112192 | length nonzeroy: 112192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((356, 436), (399, 479)) Carlist now has size: 8 Found possible false positive for car: ((356, 436), (399, 479)) checking against smoothing factor Car number: 12
1%|▏ | 17/1261 [01:51<2:10:24, 6.29s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110240 | length nonzeroy: 110240 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
1%|▏ | 18/1261 [01:57<2:07:20, 6.15s/it]
Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116976 | length nonzeroy: 116976 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1280 | length nonzeroy: 1280 Checked against Bounding box: ((256, 448), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 19/1261 [02:02<2:04:01, 5.99s/it]
Found a match. Car Bounding Box ((256, 445), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118016 | length nonzeroy: 118016 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 20/1261 [02:08<2:01:51, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118880 | length nonzeroy: 118880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((256, 488), (295, 531)) checking against smoothing factor Car number: 2 Found possible false positive for car: ((256, 540), (295, 583)) checking against smoothing factor Car number: 4
2%|▏ | 21/1261 [02:14<2:02:03, 5.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 583)) | length nonzerox: 1440 | length nonzeroy: 1440 Checked against Bounding box: ((256, 540), (295, 575)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 22/1261 [02:19<1:59:50, 5.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 576)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 23/1261 [02:26<2:02:10, 5.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 24/1261 [02:32<2:02:24, 5.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 25/1261 [02:37<1:59:35, 5.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 26/1261 [02:43<2:01:08, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 27/1261 [02:49<2:02:10, 5.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116800 | length nonzeroy: 116800 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 28/1261 [02:55<2:01:47, 5.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116800 | length nonzeroy: 116800 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 29/1261 [03:01<2:00:06, 5.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 30/1261 [03:07<2:00:00, 5.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
2%|▏ | 31/1261 [03:13<2:04:11, 6.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 32/1261 [03:19<2:05:16, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 33/1261 [03:26<2:09:02, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 34/1261 [03:32<2:05:30, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 35/1261 [03:38<2:04:12, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 36/1261 [03:44<2:03:56, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 37/1261 [03:50<2:02:04, 5.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 38/1261 [03:55<2:01:01, 5.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 39/1261 [04:01<1:58:44, 5.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 40/1261 [04:07<1:59:10, 5.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 41/1261 [04:13<1:58:52, 5.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 42/1261 [04:19<1:58:49, 5.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 43/1261 [04:25<1:59:26, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
3%|▎ | 44/1261 [04:31<2:00:45, 5.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▎ | 45/1261 [04:36<1:59:09, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▎ | 46/1261 [04:43<2:05:01, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▎ | 47/1261 [04:49<2:04:23, 6.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 48/1261 [04:55<2:03:46, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 49/1261 [05:01<2:01:53, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 50/1261 [05:07<2:01:06, 6.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 51/1261 [05:15<2:11:58, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 52/1261 [05:23<2:18:47, 6.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 53/1261 [05:29<2:15:32, 6.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 54/1261 [05:36<2:19:09, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 55/1261 [05:43<2:14:22, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
4%|▍ | 56/1261 [05:49<2:11:44, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 57/1261 [05:55<2:10:26, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 58/1261 [06:01<2:06:31, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 59/1261 [06:08<2:12:40, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 60/1261 [06:14<2:07:25, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 61/1261 [06:20<2:05:36, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 62/1261 [06:26<2:04:57, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▍ | 63/1261 [06:32<2:00:56, 6.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▌ | 64/1261 [06:38<1:58:46, 5.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▌ | 65/1261 [06:43<1:56:38, 5.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117440 | length nonzeroy: 117440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▌ | 66/1261 [06:50<1:58:32, 5.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
5%|▌ | 67/1261 [06:56<2:03:00, 6.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▌ | 68/1261 [07:03<2:03:46, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
5%|▌ | 69/1261 [07:10<2:08:14, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 70/1261 [07:17<2:14:35, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 71/1261 [07:24<2:13:14, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 72/1261 [07:31<2:13:51, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 73/1261 [07:37<2:11:03, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 74/1261 [07:43<2:05:43, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 75/1261 [07:48<2:03:01, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 76/1261 [07:54<2:01:20, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116608 | length nonzeroy: 116608 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 77/1261 [08:01<2:00:56, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▌ | 78/1261 [08:07<1:59:51, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113632 | length nonzeroy: 113632 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
6%|▋ | 79/1261 [08:14<2:07:43, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112960 | length nonzeroy: 112960 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
6%|▋ | 80/1261 [08:21<2:08:58, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113280 | length nonzeroy: 113280 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
6%|▋ | 81/1261 [08:27<2:09:45, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113696 | length nonzeroy: 113696 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 82/1261 [08:33<2:06:26, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 83/1261 [08:39<2:03:30, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 84/1261 [08:45<2:01:16, 6.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 85/1261 [08:51<1:59:20, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 86/1261 [08:57<1:55:31, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 87/1261 [09:06<2:15:24, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 88/1261 [09:11<2:07:16, 6.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 89/1261 [09:18<2:08:19, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117536 | length nonzeroy: 117536 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 90/1261 [09:24<2:01:19, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115456 | length nonzeroy: 115456 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 91/1261 [09:30<1:59:38, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116192 | length nonzeroy: 116192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
7%|▋ | 92/1261 [09:35<1:58:13, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118272 | length nonzeroy: 118272 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
7%|▋ | 93/1261 [09:41<1:54:55, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
7%|▋ | 94/1261 [09:46<1:52:12, 5.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 95/1261 [09:52<1:50:22, 5.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 96/1261 [09:58<1:53:08, 5.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 97/1261 [10:04<1:52:56, 5.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 98/1261 [10:09<1:51:37, 5.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 99/1261 [10:15<1:50:14, 5.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 100/1261 [10:21<1:49:11, 5.64s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 101/1261 [10:26<1:48:01, 5.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115456 | length nonzeroy: 115456 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 102/1261 [10:32<1:50:47, 5.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115456 | length nonzeroy: 115456 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 103/1261 [10:38<1:50:06, 5.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116192 | length nonzeroy: 116192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 104/1261 [10:44<1:50:45, 5.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116192 | length nonzeroy: 116192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
8%|▊ | 105/1261 [10:50<1:51:55, 5.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116512 | length nonzeroy: 116512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
8%|▊ | 106/1261 [10:55<1:50:51, 5.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
8%|▊ | 107/1261 [11:01<1:52:45, 5.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▊ | 108/1261 [11:07<1:53:25, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▊ | 109/1261 [11:13<1:52:58, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▊ | 110/1261 [11:19<1:51:30, 5.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 111/1261 [11:25<1:51:44, 5.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 112/1261 [11:31<1:57:35, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 113/1261 [11:38<1:59:53, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 114/1261 [11:45<2:04:57, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 115/1261 [11:52<2:07:19, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 116/1261 [11:59<2:05:45, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112448 | length nonzeroy: 112448 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
9%|▉ | 117/1261 [12:05<2:04:16, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 118/1261 [12:12<2:06:09, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
9%|▉ | 119/1261 [12:18<2:03:21, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 120/1261 [12:24<2:01:26, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 121/1261 [12:30<1:55:41, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 122/1261 [12:36<2:00:20, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 123/1261 [12:43<2:03:53, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 124/1261 [12:50<2:06:38, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 125/1261 [12:57<2:04:42, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|▉ | 126/1261 [13:03<2:02:54, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|█ | 127/1261 [13:10<2:03:14, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118880 | length nonzeroy: 118880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|█ | 128/1261 [13:17<2:07:55, 6.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115872 | length nonzeroy: 115872 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|█ | 129/1261 [13:23<2:04:52, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119296 | length nonzeroy: 119296 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
10%|█ | 130/1261 [13:29<2:00:18, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
10%|█ | 131/1261 [13:36<2:04:23, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
10%|█ | 132/1261 [13:42<2:01:16, 6.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118592 | length nonzeroy: 118592 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 133/1261 [13:49<2:03:40, 6.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 134/1261 [13:55<2:00:27, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 135/1261 [14:01<1:57:05, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 136/1261 [14:07<1:54:57, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 137/1261 [14:13<1:55:55, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 138/1261 [14:19<1:52:58, 6.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 139/1261 [14:26<1:59:40, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 140/1261 [14:34<2:07:59, 6.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119296 | length nonzeroy: 119296 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█ | 141/1261 [14:43<2:18:01, 7.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117920 | length nonzeroy: 117920 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█▏ | 142/1261 [14:49<2:11:00, 7.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█▏ | 143/1261 [14:56<2:08:46, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█▏ | 144/1261 [15:04<2:17:59, 7.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118464 | length nonzeroy: 118464 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
11%|█▏ | 145/1261 [15:12<2:21:26, 7.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118464 | length nonzeroy: 118464 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 146/1261 [15:18<2:12:01, 7.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118048 | length nonzeroy: 118048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 147/1261 [15:24<2:07:38, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114368 | length nonzeroy: 114368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 148/1261 [15:30<2:00:54, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 149/1261 [15:36<1:57:13, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118592 | length nonzeroy: 118592 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 150/1261 [15:42<1:54:38, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118592 | length nonzeroy: 118592 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 151/1261 [15:49<1:59:55, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 152/1261 [15:57<2:05:22, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 153/1261 [16:04<2:07:36, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 154/1261 [16:12<2:17:08, 7.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118880 | length nonzeroy: 118880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
12%|█▏ | 155/1261 [16:19<2:10:40, 7.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 156/1261 [16:25<2:07:58, 6.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
12%|█▏ | 157/1261 [16:32<2:06:24, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 158/1261 [16:39<2:07:34, 6.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 159/1261 [16:45<2:04:04, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 160/1261 [16:53<2:08:12, 6.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 161/1261 [16:59<2:02:17, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 162/1261 [17:06<2:03:01, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 163/1261 [17:12<1:58:37, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 164/1261 [17:18<1:56:45, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 165/1261 [17:24<1:55:56, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 166/1261 [17:30<1:52:32, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 167/1261 [17:36<1:50:41, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116512 | length nonzeroy: 116512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
13%|█▎ | 168/1261 [17:41<1:49:11, 5.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 169/1261 [17:47<1:47:47, 5.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
13%|█▎ | 170/1261 [17:52<1:43:56, 5.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▎ | 171/1261 [17:58<1:42:42, 5.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▎ | 172/1261 [18:04<1:42:14, 5.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 174/1261 [18:17<1:50:54, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 175/1261 [18:23<1:50:47, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 176/1261 [18:29<1:52:13, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 177/1261 [18:35<1:51:32, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 178/1261 [18:41<1:49:41, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 179/1261 [18:47<1:48:56, 6.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 180/1261 [18:53<1:47:17, 5.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 181/1261 [19:00<1:53:16, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
14%|█▍ | 182/1261 [19:06<1:51:37, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 183/1261 [19:14<2:01:10, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 184/1261 [19:21<1:59:57, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 185/1261 [19:27<1:59:13, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 186/1261 [19:33<1:55:42, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 187/1261 [19:39<1:52:09, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 188/1261 [19:45<1:49:27, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▍ | 189/1261 [19:52<1:56:47, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116864 | length nonzeroy: 116864 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 190/1261 [20:00<2:00:38, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 191/1261 [20:06<1:56:17, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 192/1261 [20:12<1:54:31, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 193/1261 [20:18<1:54:04, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 194/1261 [20:23<1:47:42, 6.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
15%|█▌ | 195/1261 [20:31<1:55:15, 6.49s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 196/1261 [20:36<1:48:58, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 197/1261 [20:43<1:54:05, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 198/1261 [20:50<1:53:47, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 199/1261 [20:56<1:53:13, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 200/1261 [21:03<1:56:54, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 201/1261 [21:11<2:03:18, 6.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 202/1261 [21:18<2:00:44, 6.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 203/1261 [21:24<1:57:14, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▌ | 204/1261 [21:31<2:00:09, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▋ | 205/1261 [21:38<2:00:05, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▋ | 206/1261 [21:44<1:59:15, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▋ | 207/1261 [21:51<1:55:37, 6.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
16%|█▋ | 208/1261 [21:57<1:53:32, 6.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 209/1261 [22:03<1:52:34, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 210/1261 [22:09<1:51:32, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 211/1261 [22:17<1:57:38, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 212/1261 [22:24<2:00:46, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 213/1261 [22:31<2:00:00, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 214/1261 [22:38<1:59:50, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 215/1261 [22:44<1:58:02, 6.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116192 | length nonzeroy: 116192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 216/1261 [22:50<1:54:21, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116512 | length nonzeroy: 116512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
17%|█▋ | 217/1261 [22:58<1:58:15, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 218/1261 [23:05<1:57:52, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 219/1261 [23:12<2:00:55, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
17%|█▋ | 220/1261 [23:20<2:07:13, 7.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 221/1261 [23:28<2:11:23, 7.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 222/1261 [23:36<2:13:02, 7.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113696 | length nonzeroy: 113696 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 223/1261 [23:45<2:16:14, 7.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 224/1261 [23:54<2:25:15, 8.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 225/1261 [24:02<2:24:33, 8.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117984 | length nonzeroy: 117984 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 226/1261 [24:10<2:20:38, 8.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116096 | length nonzeroy: 116096 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 227/1261 [24:18<2:16:55, 7.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117504 | length nonzeroy: 117504 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 228/1261 [24:26<2:18:21, 8.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117504 | length nonzeroy: 117504 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 229/1261 [24:34<2:19:47, 8.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 230/1261 [24:43<2:20:39, 8.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117568 | length nonzeroy: 117568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 231/1261 [24:49<2:12:14, 7.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117984 | length nonzeroy: 117984 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 232/1261 [24:57<2:12:11, 7.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
18%|█▊ | 233/1261 [25:04<2:09:17, 7.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117984 | length nonzeroy: 117984 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▊ | 234/1261 [25:12<2:12:32, 7.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117984 | length nonzeroy: 117984 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▊ | 235/1261 [25:19<2:09:57, 7.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▊ | 236/1261 [25:26<2:06:23, 7.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 237/1261 [25:33<2:04:03, 7.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 238/1261 [25:41<2:04:54, 7.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 239/1261 [25:48<2:02:59, 7.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117536 | length nonzeroy: 117536 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 240/1261 [25:55<2:02:28, 7.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 241/1261 [26:02<2:01:05, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 242/1261 [26:09<2:01:45, 7.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 243/1261 [26:17<2:02:53, 7.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 244/1261 [26:24<2:01:43, 7.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
19%|█▉ | 245/1261 [26:31<2:00:39, 7.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 246/1261 [26:37<1:56:42, 6.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 247/1261 [26:43<1:53:48, 6.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 248/1261 [26:50<1:53:54, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 249/1261 [26:56<1:51:28, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 250/1261 [27:03<1:49:42, 6.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119104 | length nonzeroy: 119104 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 251/1261 [27:09<1:50:17, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|█▉ | 252/1261 [27:16<1:51:49, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 253/1261 [27:23<1:51:14, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 254/1261 [27:29<1:48:49, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 255/1261 [27:36<1:49:28, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 256/1261 [27:42<1:49:56, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 257/1261 [27:49<1:50:33, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
20%|██ | 258/1261 [27:56<1:52:47, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 259/1261 [28:03<1:55:19, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 260/1261 [28:09<1:51:17, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 261/1261 [28:17<1:57:37, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 262/1261 [28:25<1:58:24, 7.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119104 | length nonzeroy: 119104 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 263/1261 [28:34<2:08:55, 7.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 264/1261 [28:41<2:04:51, 7.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 265/1261 [28:47<2:00:24, 7.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 266/1261 [28:54<1:55:20, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██ | 267/1261 [29:00<1:51:54, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██▏ | 268/1261 [29:06<1:48:30, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██▏ | 269/1261 [29:11<1:42:52, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██▏ | 270/1261 [29:19<1:47:00, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
21%|██▏ | 271/1261 [29:25<1:48:47, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 272/1261 [29:34<1:57:39, 7.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 273/1261 [29:42<2:00:14, 7.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 274/1261 [29:51<2:11:16, 7.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 275/1261 [30:01<2:21:29, 8.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 276/1261 [30:09<2:15:40, 8.26s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113696 | length nonzeroy: 113696 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
22%|██▏ | 277/1261 [30:16<2:09:10, 7.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 278/1261 [30:21<1:58:34, 7.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 279/1261 [30:27<1:50:33, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 280/1261 [30:33<1:47:46, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 281/1261 [30:40<1:49:30, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 282/1261 [30:46<1:46:28, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
22%|██▏ | 283/1261 [30:54<1:50:55, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 284/1261 [31:00<1:50:43, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 285/1261 [31:08<1:52:32, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 286/1261 [31:14<1:50:32, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 287/1261 [31:22<1:55:54, 7.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 288/1261 [31:29<1:55:38, 7.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118272 | length nonzeroy: 118272 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 289/1261 [31:36<1:55:17, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 290/1261 [31:43<1:52:53, 6.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116512 | length nonzeroy: 116512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 291/1261 [31:49<1:50:03, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 292/1261 [31:55<1:45:45, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 540), (895, 635)) Carlist now has size: 8 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
23%|██▎ | 293/1261 [32:03<1:50:31, 6.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
23%|██▎ | 294/1261 [32:08<1:44:01, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
23%|██▎ | 295/1261 [32:14<1:41:10, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
23%|██▎ | 296/1261 [32:21<1:44:17, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▎ | 297/1261 [32:28<1:44:24, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▎ | 298/1261 [32:35<1:45:36, 6.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▎ | 299/1261 [32:41<1:43:23, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 300/1261 [32:47<1:41:44, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117632 | length nonzeroy: 117632 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
24%|██▍ | 301/1261 [32:53<1:39:57, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116320 | length nonzeroy: 116320 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
24%|██▍ | 302/1261 [32:59<1:37:59, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 303/1261 [33:05<1:36:20, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 304/1261 [33:12<1:45:04, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 305/1261 [33:19<1:45:06, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 306/1261 [33:26<1:48:07, 6.79s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 307/1261 [33:33<1:49:32, 6.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
24%|██▍ | 308/1261 [33:40<1:50:06, 6.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▍ | 309/1261 [33:47<1:49:54, 6.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▍ | 310/1261 [33:53<1:45:19, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▍ | 311/1261 [33:59<1:42:16, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▍ | 312/1261 [34:06<1:44:59, 6.64s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117440 | length nonzeroy: 117440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
25%|██▍ | 313/1261 [34:13<1:42:50, 6.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
25%|██▍ | 314/1261 [34:19<1:44:25, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▍ | 315/1261 [34:26<1:44:00, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 316/1261 [34:32<1:41:18, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 317/1261 [34:39<1:45:05, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 318/1261 [34:47<1:48:10, 6.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 319/1261 [34:55<1:53:46, 7.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 320/1261 [35:01<1:48:27, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
25%|██▌ | 321/1261 [35:08<1:46:50, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 322/1261 [35:14<1:43:33, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 323/1261 [35:20<1:42:39, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 324/1261 [35:26<1:39:27, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117440 | length nonzeroy: 117440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
26%|██▌ | 325/1261 [35:34<1:45:46, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 576)) checking against smoothing factor Car number: 5
26%|██▌ | 326/1261 [35:40<1:44:43, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 327/1261 [35:47<1:43:13, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 328/1261 [35:54<1:44:43, 6.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 329/1261 [36:01<1:46:06, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 330/1261 [36:07<1:43:31, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▌ | 331/1261 [36:14<1:43:47, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▋ | 332/1261 [36:21<1:44:25, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▋ | 333/1261 [36:27<1:40:03, 6.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
26%|██▋ | 334/1261 [36:33<1:41:53, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 335/1261 [36:40<1:39:52, 6.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 336/1261 [36:46<1:39:04, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 337/1261 [36:52<1:37:27, 6.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 338/1261 [36:58<1:37:14, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 339/1261 [37:04<1:35:49, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 340/1261 [37:11<1:37:35, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 341/1261 [37:17<1:34:53, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 342/1261 [37:23<1:33:33, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 343/1261 [37:28<1:29:57, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 344/1261 [37:39<1:55:16, 7.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 345/1261 [37:45<1:45:44, 6.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
27%|██▋ | 346/1261 [37:52<1:48:08, 7.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 347/1261 [37:58<1:42:42, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 348/1261 [38:04<1:39:31, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 349/1261 [38:11<1:39:29, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
28%|██▊ | 350/1261 [38:17<1:35:42, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 351/1261 [38:23<1:34:14, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 352/1261 [38:28<1:29:29, 5.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 353/1261 [38:33<1:26:20, 5.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 354/1261 [38:38<1:24:13, 5.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 355/1261 [38:46<1:32:49, 6.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 356/1261 [38:52<1:32:39, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 357/1261 [38:58<1:33:18, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 358/1261 [39:09<1:51:20, 7.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
28%|██▊ | 359/1261 [39:15<1:48:33, 7.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▊ | 360/1261 [39:21<1:43:22, 6.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▊ | 361/1261 [39:27<1:35:53, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▊ | 362/1261 [39:33<1:34:12, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 363/1261 [39:38<1:31:22, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 364/1261 [39:45<1:31:19, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 365/1261 [39:50<1:28:08, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 366/1261 [39:56<1:27:53, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 367/1261 [40:01<1:24:37, 5.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 368/1261 [40:06<1:22:23, 5.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 369/1261 [40:11<1:20:54, 5.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 370/1261 [40:17<1:19:53, 5.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
29%|██▉ | 371/1261 [40:23<1:21:46, 5.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 372/1261 [40:29<1:27:30, 5.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 373/1261 [40:36<1:31:44, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 374/1261 [40:42<1:30:36, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 375/1261 [40:51<1:40:52, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 376/1261 [40:58<1:42:44, 6.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 377/1261 [41:04<1:39:51, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|██▉ | 378/1261 [41:13<1:47:27, 7.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 379/1261 [41:21<1:51:00, 7.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 380/1261 [41:27<1:45:12, 7.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 381/1261 [41:34<1:41:16, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 382/1261 [41:39<1:34:31, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 383/1261 [41:44<1:30:37, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
30%|███ | 384/1261 [41:50<1:26:14, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117440 | length nonzeroy: 117440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 385/1261 [41:57<1:32:41, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
31%|███ | 386/1261 [42:03<1:30:24, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
31%|███ | 387/1261 [42:09<1:29:19, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
31%|███ | 388/1261 [42:15<1:28:02, 6.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 389/1261 [42:20<1:24:11, 5.79s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 390/1261 [42:25<1:22:02, 5.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 391/1261 [42:33<1:32:11, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 392/1261 [42:41<1:35:50, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 393/1261 [42:47<1:34:34, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███ | 394/1261 [42:54<1:37:23, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███▏ | 395/1261 [43:01<1:37:36, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███▏ | 396/1261 [43:09<1:42:39, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 111200 | length nonzeroy: 111200 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
31%|███▏ | 397/1261 [43:16<1:43:34, 7.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117440 | length nonzeroy: 117440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
32%|███▏ | 398/1261 [43:25<1:48:23, 7.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
32%|███▏ | 399/1261 [43:34<1:54:54, 8.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 400/1261 [43:41<1:52:05, 7.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 401/1261 [43:49<1:54:28, 7.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 402/1261 [43:56<1:46:19, 7.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116640 | length nonzeroy: 116640 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 403/1261 [44:03<1:45:33, 7.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116928 | length nonzeroy: 116928 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 404/1261 [44:09<1:41:22, 7.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116640 | length nonzeroy: 116640 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3
32%|███▏ | 405/1261 [44:16<1:41:13, 7.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117888 | length nonzeroy: 117888 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3
32%|███▏ | 406/1261 [44:22<1:34:28, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117888 | length nonzeroy: 117888 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
32%|███▏ | 407/1261 [44:29<1:37:39, 6.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3
32%|███▏ | 408/1261 [44:37<1:41:28, 7.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10
32%|███▏ | 409/1261 [44:44<1:40:56, 7.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113280 | length nonzeroy: 113280 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 410/1261 [44:53<1:47:23, 7.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 411/1261 [45:00<1:45:19, 7.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 412/1261 [45:06<1:41:12, 7.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 413/1261 [45:13<1:37:21, 6.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 414/1261 [45:19<1:36:06, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 415/1261 [45:26<1:35:23, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 416/1261 [45:33<1:36:48, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 417/1261 [45:40<1:35:05, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 418/1261 [45:46<1:32:49, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
33%|███▎ | 419/1261 [45:52<1:30:29, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10
33%|███▎ | 420/1261 [45:58<1:29:23, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10
33%|███▎ | 421/1261 [46:05<1:30:15, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10
33%|███▎ | 422/1261 [46:11<1:28:02, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118720 | length nonzeroy: 118720 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▎ | 423/1261 [46:17<1:28:29, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▎ | 424/1261 [46:23<1:28:29, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▎ | 425/1261 [46:30<1:27:46, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 426/1261 [46:37<1:31:18, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118720 | length nonzeroy: 118720 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 427/1261 [46:43<1:30:34, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 428/1261 [46:50<1:31:48, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118720 | length nonzeroy: 118720 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 429/1261 [46:57<1:33:45, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118720 | length nonzeroy: 118720 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 430/1261 [47:04<1:35:08, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115152 | length nonzeroy: 115152 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
34%|███▍ | 431/1261 [47:13<1:43:08, 7.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112096 | length nonzeroy: 112096 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
34%|███▍ | 432/1261 [47:20<1:39:56, 7.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115872 | length nonzeroy: 115872 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 433/1261 [47:27<1:39:13, 7.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117600 | length nonzeroy: 117600 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 434/1261 [47:34<1:37:16, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
34%|███▍ | 435/1261 [47:41<1:36:28, 7.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▍ | 436/1261 [47:48<1:38:09, 7.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▍ | 437/1261 [47:55<1:36:57, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 540), (895, 635)) Carlist now has size: 10 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 11
35%|███▍ | 438/1261 [48:02<1:37:32, 7.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▍ | 439/1261 [48:09<1:35:03, 6.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▍ | 440/1261 [48:16<1:36:30, 7.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▍ | 441/1261 [48:23<1:36:19, 7.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▌ | 442/1261 [48:30<1:35:05, 6.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115568 | length nonzeroy: 115568 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3
35%|███▌ | 443/1261 [48:38<1:38:56, 7.26s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112512 | length nonzeroy: 112512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▌ | 444/1261 [48:44<1:35:14, 6.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3
35%|███▌ | 445/1261 [48:52<1:38:00, 7.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5
35%|███▌ | 446/1261 [48:57<1:31:20, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
35%|███▌ | 447/1261 [49:03<1:26:33, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 448/1261 [49:09<1:24:38, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 449/1261 [49:16<1:29:39, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 450/1261 [49:23<1:29:33, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 451/1261 [49:31<1:35:26, 7.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 452/1261 [49:39<1:40:22, 7.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 453/1261 [49:47<1:39:56, 7.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 454/1261 [49:54<1:38:15, 7.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112512 | length nonzeroy: 112512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 455/1261 [50:01<1:36:17, 7.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112512 | length nonzeroy: 112512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 456/1261 [50:07<1:32:52, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112512 | length nonzeroy: 112512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
36%|███▌ | 457/1261 [50:14<1:34:33, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
36%|███▋ | 458/1261 [50:21<1:33:57, 7.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 445), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
36%|███▋ | 459/1261 [50:29<1:35:11, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
36%|███▋ | 460/1261 [50:36<1:37:09, 7.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 461/1261 [50:43<1:34:10, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 462/1261 [50:50<1:32:35, 6.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 463/1261 [50:57<1:33:56, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 464/1261 [51:04<1:32:50, 6.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 465/1261 [51:10<1:30:48, 6.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 466/1261 [51:18<1:32:17, 6.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112512 | length nonzeroy: 112512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
37%|███▋ | 467/1261 [51:24<1:31:50, 6.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
37%|███▋ | 468/1261 [51:32<1:33:46, 7.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 469/1261 [51:39<1:33:02, 7.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114192 | length nonzeroy: 114192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 470/1261 [51:45<1:31:22, 6.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 471/1261 [51:52<1:31:32, 6.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
37%|███▋ | 472/1261 [52:01<1:37:21, 7.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 473/1261 [52:06<1:30:01, 6.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 474/1261 [52:13<1:29:28, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 475/1261 [52:21<1:33:18, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 476/1261 [52:28<1:30:47, 6.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 477/1261 [52:34<1:30:09, 6.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((928, 436), (959, 479)) Carlist now has size: 11 Found possible false positive for car: ((928, 436), (959, 479)) checking against smoothing factor Car number: 1 Removing Car: ((928, 488), (959, 531)) Carlist now has size: 10 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 3 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 478/1261 [52:41<1:29:13, 6.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107616 | length nonzeroy: 107616 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
38%|███▊ | 479/1261 [52:47<1:27:24, 6.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12
38%|███▊ | 480/1261 [52:54<1:26:44, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 481/1261 [53:01<1:27:46, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14
38%|███▊ | 482/1261 [53:09<1:31:14, 7.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
38%|███▊ | 483/1261 [53:15<1:30:17, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
38%|███▊ | 484/1261 [53:21<1:26:11, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
38%|███▊ | 485/1261 [53:27<1:23:18, 6.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
39%|███▊ | 486/1261 [53:33<1:21:03, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▊ | 487/1261 [53:41<1:25:30, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▊ | 488/1261 [53:48<1:26:22, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 489/1261 [53:54<1:24:12, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 490/1261 [54:01<1:26:53, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107616 | length nonzeroy: 107616 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((824, 436), (867, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 436), (867, 479)) Found a match. Car Bounding Box ((876, 436), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 491/1261 [54:09<1:29:58, 7.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 492/1261 [54:15<1:27:10, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (895, 635)) | length nonzerox: 1920 | length nonzeroy: 1920 Checked against Bounding box: ((876, 540), (895, 635)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 493/1261 [54:21<1:25:55, 6.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117344 | length nonzeroy: 117344 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 494/1261 [54:29<1:29:26, 7.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16
39%|███▉ | 495/1261 [54:36<1:29:44, 7.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 496/1261 [54:42<1:25:47, 6.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116848 | length nonzeroy: 116848 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 497/1261 [54:50<1:28:30, 6.95s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116848 | length nonzeroy: 116848 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
39%|███▉ | 498/1261 [54:57<1:30:17, 7.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116848 | length nonzeroy: 116848 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
40%|███▉ | 499/1261 [55:04<1:27:31, 6.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
40%|███▉ | 500/1261 [55:10<1:26:51, 6.85s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
40%|███▉ | 501/1261 [55:17<1:24:23, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
40%|███▉ | 502/1261 [55:22<1:21:43, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16
40%|███▉ | 503/1261 [55:29<1:21:06, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16
40%|███▉ | 504/1261 [55:35<1:18:39, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118688 | length nonzeroy: 118688 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16
40%|████ | 505/1261 [55:41<1:17:34, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118816 | length nonzeroy: 118816 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 576)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
40%|████ | 506/1261 [55:47<1:16:44, 6.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Removing Car: ((876, 436), (895, 479)) Carlist now has size: 12 Found possible false positive for car: ((876, 436), (895, 479)) checking against smoothing factor Car number: 14 Removing Car: ((824, 436), (867, 479)) Carlist now has size: 11 Found possible false positive for car: ((824, 436), (867, 479)) checking against smoothing factor Car number: 16
40%|████ | 507/1261 [55:52<1:15:26, 6.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
40%|████ | 508/1261 [55:58<1:14:55, 5.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 488), (895, 531)) Carlist now has size: 10 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 12 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
40%|████ | 509/1261 [56:04<1:13:13, 5.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 540), (895, 635)) Carlist now has size: 9 Found possible false positive for car: ((876, 540), (895, 635)) checking against smoothing factor Car number: 15
40%|████ | 510/1261 [56:11<1:17:09, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
41%|████ | 511/1261 [56:18<1:20:48, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 512/1261 [56:24<1:19:47, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 513/1261 [56:31<1:19:51, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115904 | length nonzeroy: 115904 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 514/1261 [56:37<1:20:25, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108480 | length nonzeroy: 108480 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 515/1261 [56:44<1:20:54, 6.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 516/1261 [56:49<1:17:51, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117280 | length nonzeroy: 117280 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 517/1261 [56:56<1:19:03, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117280 | length nonzeroy: 117280 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 518/1261 [57:01<1:15:11, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115488 | length nonzeroy: 115488 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 519/1261 [57:07<1:12:41, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115904 | length nonzeroy: 115904 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████ | 520/1261 [57:14<1:16:48, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
41%|████▏ | 521/1261 [57:21<1:19:17, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116784 | length nonzeroy: 116784 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████▏ | 522/1261 [57:27<1:17:45, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116848 | length nonzeroy: 116848 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
41%|████▏ | 523/1261 [57:33<1:16:07, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115904 | length nonzeroy: 115904 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
42%|████▏ | 524/1261 [57:39<1:15:11, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
42%|████▏ | 525/1261 [57:45<1:15:21, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
42%|████▏ | 526/1261 [57:51<1:14:48, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113440 | length nonzeroy: 113440 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((824, 436), (919, 479)) | length nonzerox: 3840 | length nonzeroy: 3840 Checked against Bounding box: ((824, 436), (919, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
42%|████▏ | 527/1261 [57:57<1:14:22, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112048 | length nonzeroy: 112048 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((876, 540), (919, 635)) | length nonzerox: 2784 | length nonzeroy: 2784 Checked against Bounding box: ((876, 540), (919, 635)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19
42%|████▏ | 528/1261 [58:04<1:16:29, 6.26s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117280 | length nonzeroy: 117280 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((928, 448), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 529/1261 [58:09<1:14:31, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117680 | length nonzeroy: 117680 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 530/1261 [58:15<1:13:30, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 531/1261 [58:21<1:14:07, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 532/1261 [58:28<1:14:25, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118368 | length nonzeroy: 118368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 533/1261 [58:35<1:18:47, 6.49s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 448), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 534/1261 [58:41<1:18:18, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117952 | length nonzeroy: 117952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
42%|████▏ | 535/1261 [58:48<1:20:25, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118368 | length nonzeroy: 118368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 536/1261 [58:57<1:25:22, 7.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118368 | length nonzeroy: 118368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 537/1261 [59:04<1:26:44, 7.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118896 | length nonzeroy: 118896 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 538/1261 [59:10<1:22:09, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118576 | length nonzeroy: 118576 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 539/1261 [59:17<1:21:05, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118304 | length nonzeroy: 118304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 540/1261 [59:24<1:22:59, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115552 | length nonzeroy: 115552 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 541/1261 [59:34<1:34:16, 7.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115552 | length nonzeroy: 115552 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 542/1261 [59:40<1:27:48, 7.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116032 | length nonzeroy: 116032 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Removing Car: ((824, 436), (919, 479)) Carlist now has size: 14 Found possible false positive for car: ((824, 436), (919, 479)) checking against smoothing factor Car number: 19 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 543/1261 [59:46<1:22:04, 6.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118304 | length nonzeroy: 118304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 488), (895, 531)) Carlist now has size: 13 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 21 Removing Car: ((876, 540), (919, 635)) Carlist now has size: 12 Found possible false positive for car: ((876, 540), (919, 635)) checking against smoothing factor Car number: 24
43%|████▎ | 544/1261 [59:51<1:18:01, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117840 | length nonzeroy: 117840 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
43%|████▎ | 545/1261 [59:58<1:17:54, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117840 | length nonzeroy: 117840 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
43%|████▎ | 546/1261 [1:00:04<1:15:23, 6.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117840 | length nonzeroy: 117840 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
43%|████▎ | 547/1261 [1:00:10<1:13:23, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117552 | length nonzeroy: 117552 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 447), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
43%|████▎ | 548/1261 [1:00:16<1:13:47, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117552 | length nonzeroy: 117552 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 447), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
44%|████▎ | 549/1261 [1:00:22<1:13:44, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116304 | length nonzeroy: 116304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 447), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
44%|████▎ | 550/1261 [1:00:28<1:13:31, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115760 | length nonzeroy: 115760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▎ | 551/1261 [1:00:35<1:13:29, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110336 | length nonzeroy: 110336 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
44%|████▍ | 552/1261 [1:00:41<1:13:19, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106288 | length nonzeroy: 106288 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 553/1261 [1:00:47<1:12:00, 6.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 105936 | length nonzeroy: 105936 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 554/1261 [1:00:53<1:11:11, 6.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113312 | length nonzeroy: 113312 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 555/1261 [1:00:59<1:11:30, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112816 | length nonzeroy: 112816 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 556/1261 [1:01:05<1:11:03, 6.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115680 | length nonzeroy: 115680 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 557/1261 [1:01:11<1:10:47, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113536 | length nonzeroy: 113536 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 558/1261 [1:01:16<1:09:03, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112752 | length nonzeroy: 112752 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 559/1261 [1:01:22<1:08:19, 5.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113920 | length nonzeroy: 113920 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 560/1261 [1:01:28<1:07:42, 5.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113712 | length nonzeroy: 113712 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 447), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
44%|████▍ | 561/1261 [1:01:34<1:09:34, 5.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114624 | length nonzeroy: 114624 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
45%|████▍ | 562/1261 [1:01:41<1:13:29, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 115152 | length nonzeroy: 115152 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
45%|████▍ | 563/1261 [1:01:48<1:14:50, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116304 | length nonzeroy: 116304 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 438), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
45%|████▍ | 564/1261 [1:01:53<1:11:14, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 113632 | length nonzeroy: 113632 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▍ | 565/1261 [1:01:59<1:08:37, 5.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109424 | length nonzeroy: 109424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▍ | 566/1261 [1:02:04<1:07:11, 5.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109424 | length nonzeroy: 109424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▍ | 567/1261 [1:02:10<1:08:14, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 98880 | length nonzeroy: 98880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▌ | 568/1261 [1:02:16<1:08:20, 5.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 98880 | length nonzeroy: 98880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((408, 448), (555, 479)) | length nonzerox: 4736 | length nonzeroy: 4736 Checked against Bounding box: ((408, 448), (555, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▌ | 569/1261 [1:02:22<1:08:00, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103392 | length nonzeroy: 103392 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((408, 448), (555, 479)) | length nonzerox: 4736 | length nonzeroy: 4736 Checked against Bounding box: ((408, 448), (555, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18
45%|████▌ | 570/1261 [1:02:28<1:09:16, 6.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109824 | length nonzeroy: 109824 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24
45%|████▌ | 571/1261 [1:02:36<1:15:58, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109456 | length nonzeroy: 109456 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24
45%|████▌ | 572/1261 [1:02:43<1:16:37, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103040 | length nonzeroy: 103040 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24
45%|████▌ | 573/1261 [1:02:50<1:15:06, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 105952 | length nonzeroy: 105952 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((460, 448), (555, 479)) | length nonzerox: 3072 | length nonzeroy: 3072 Checked against Bounding box: ((460, 448), (555, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24
46%|████▌ | 574/1261 [1:02:55<1:11:09, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 111520 | length nonzeroy: 111520 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 575/1261 [1:03:04<1:19:47, 6.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 111520 | length nonzeroy: 111520 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 576/1261 [1:03:12<1:23:33, 7.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110224 | length nonzeroy: 110224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 577/1261 [1:03:20<1:26:44, 7.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 105360 | length nonzeroy: 105360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 578/1261 [1:03:26<1:19:54, 7.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106992 | length nonzeroy: 106992 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 579/1261 [1:03:32<1:17:21, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107648 | length nonzeroy: 107648 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((928, 438), (959, 479)) Carlist now has size: 14 Found possible false positive for car: ((928, 438), (959, 479)) checking against smoothing factor Car number: 17 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 580/1261 [1:03:38<1:15:46, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106768 | length nonzeroy: 106768 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((928, 488), (959, 531)) Carlist now has size: 13 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 18 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 581/1261 [1:03:45<1:14:18, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106768 | length nonzeroy: 106768 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 582/1261 [1:03:51<1:12:37, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 104080 | length nonzeroy: 104080 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▌ | 583/1261 [1:03:57<1:11:11, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 98880 | length nonzeroy: 98880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▋ | 584/1261 [1:04:03<1:10:07, 6.21s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 104768 | length nonzeroy: 104768 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
46%|████▋ | 585/1261 [1:04:09<1:10:40, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109152 | length nonzeroy: 109152 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Removing Car: ((408, 448), (555, 479)) Carlist now has size: 15 Found possible false positive for car: ((408, 448), (555, 479)) checking against smoothing factor Car number: 24
46%|████▋ | 586/1261 [1:04:15<1:07:51, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 104512 | length nonzeroy: 104512 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((616, 448), (659, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((616, 448), (659, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25
47%|████▋ | 587/1261 [1:04:21<1:06:54, 5.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110368 | length nonzeroy: 110368 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 588/1261 [1:04:26<1:06:04, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110592 | length nonzeroy: 110592 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 589/1261 [1:04:32<1:05:53, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107760 | length nonzeroy: 107760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 590/1261 [1:04:38<1:06:42, 5.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 106752 | length nonzeroy: 106752 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((460, 448), (555, 479)) Carlist now has size: 16 Found possible false positive for car: ((460, 448), (555, 479)) checking against smoothing factor Car number: 25 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 591/1261 [1:04:44<1:06:22, 5.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108640 | length nonzeroy: 108640 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 592/1261 [1:04:51<1:07:41, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108496 | length nonzeroy: 108496 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 593/1261 [1:04:59<1:16:04, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107184 | length nonzeroy: 107184 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 594/1261 [1:05:06<1:15:14, 6.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107760 | length nonzeroy: 107760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 595/1261 [1:05:12<1:12:55, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 108256 | length nonzeroy: 108256 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29 Found possible false positive for car: ((772, 448), (815, 479)) checking against smoothing factor Car number: 31
47%|████▋ | 596/1261 [1:05:19<1:15:02, 6.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103136 | length nonzeroy: 103136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((824, 448), (867, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((824, 448), (867, 479)) Found a match. Car Bounding Box ((876, 448), (895, 479)) | length nonzerox: 640 | length nonzeroy: 640 Checked against Bounding box: ((876, 448), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
47%|████▋ | 597/1261 [1:05:26<1:14:31, 6.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29 Found possible false positive for car: ((772, 448), (815, 479)) checking against smoothing factor Car number: 31
47%|████▋ | 598/1261 [1:05:33<1:17:23, 7.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 110272 | length nonzeroy: 110272 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29 Found possible false positive for car: ((772, 448), (815, 479)) checking against smoothing factor Car number: 31
48%|████▊ | 599/1261 [1:05:40<1:15:30, 6.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 104192 | length nonzeroy: 104192 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((668, 448), (711, 479)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((772, 448), (815, 479)) | length nonzerox: 1536 | length nonzeroy: 1536 Checked against Bounding box: ((768, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
48%|████▊ | 600/1261 [1:05:47<1:17:44, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107136 | length nonzeroy: 107136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((768, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((824, 448), (895, 479)) | length nonzerox: 2304 | length nonzeroy: 2304 Checked against Bounding box: ((824, 448), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30
48%|████▊ | 601/1261 [1:05:54<1:14:53, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 107232 | length nonzeroy: 107232 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((720, 448), (763, 479)) Found a match. Car Bounding Box ((771, 448), (815, 479)) | length nonzerox: 1536 | length nonzeroy: 1536 Checked against Bounding box: ((768, 448), (815, 479)) Found a match. Car Bounding Box ((824, 448), (895, 479)) | length nonzerox: 2304 | length nonzeroy: 2304 Checked against Bounding box: ((824, 448), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30
48%|████▊ | 602/1261 [1:06:00<1:13:01, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109216 | length nonzeroy: 109216 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((768, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((824, 448), (895, 479)) | length nonzerox: 2304 | length nonzeroy: 2304 Checked against Bounding box: ((824, 448), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 448), (763, 479)) checking against smoothing factor Car number: 26 Removing Car: ((616, 448), (659, 479)) Carlist now has size: 16 Found possible false positive for car: ((616, 448), (659, 479)) checking against smoothing factor Car number: 29
48%|████▊ | 603/1261 [1:06:08<1:16:47, 7.00s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 109216 | length nonzeroy: 109216 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((771, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((824, 448), (895, 479)) | length nonzerox: 2304 | length nonzeroy: 2304 Checked against Bounding box: ((824, 448), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 448), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30
48%|████▊ | 604/1261 [1:06:14<1:13:21, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 112880 | length nonzeroy: 112880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 448), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 448), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 605/1261 [1:06:21<1:16:07, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 111696 | length nonzeroy: 111696 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 448), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 448), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 606/1261 [1:06:27<1:12:25, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103792 | length nonzeroy: 103792 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((771, 448), (815, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((772, 448), (815, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((824, 448), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 448), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 448), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 607/1261 [1:06:33<1:09:54, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 98416 | length nonzeroy: 98416 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((720, 448), (763, 479)) | length nonzerox: 2064 | length nonzeroy: 2064 Checked against Bounding box: ((720, 436), (767, 479)) Found a match. Car Bounding Box ((771, 448), (815, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 436), (815, 479)) Found a match. Car Bounding Box ((824, 448), (867, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 436), (867, 479)) Found a match. Car Bounding Box ((876, 448), (895, 479)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 436), (895, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((824, 488), (867, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 488), (867, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 608/1261 [1:06:39<1:08:29, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103328 | length nonzeroy: 103328 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((771, 438), (815, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 436), (815, 479)) Found a match. Car Bounding Box ((824, 438), (867, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 436), (867, 479)) Found a match. Car Bounding Box ((876, 436), (919, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((876, 436), (919, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((772, 488), (815, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 488), (815, 531)) Found a match. Car Bounding Box ((824, 488), (867, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 488), (867, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (766, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 448), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 609/1261 [1:06:46<1:10:57, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 90496 | length nonzeroy: 90496 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((668, 448), (711, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((668, 436), (711, 479)) Found a match. Car Bounding Box ((720, 438), (766, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((720, 436), (763, 479)) Found a match. Car Bounding Box ((771, 438), (815, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 436), (815, 479)) Found a match. Car Bounding Box ((824, 437), (867, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 436), (867, 479)) Found a match. Car Bounding Box ((876, 436), (919, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((876, 436), (919, 479)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((772, 488), (815, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 488), (815, 531)) Found a match. Car Bounding Box ((824, 488), (867, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 488), (867, 531)) Found a match. Car Bounding Box ((876, 488), (895, 531)) | length nonzerox: 880 | length nonzeroy: 880 Checked against Bounding box: ((876, 488), (895, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32
48%|████▊ | 610/1261 [1:06:53<1:10:12, 6.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((668, 438), (711, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((668, 436), (711, 479)) Found a match. Car Bounding Box ((720, 438), (763, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((720, 436), (763, 479)) Found a match. Car Bounding Box ((771, 438), (815, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 436), (815, 479)) Found a match. Car Bounding Box ((824, 437), (867, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 436), (867, 479)) Found a match. Car Bounding Box ((876, 436), (919, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((876, 436), (919, 479)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((668, 488), (711, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((668, 488), (711, 531)) Found a match. Car Bounding Box ((720, 488), (763, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((720, 488), (763, 531)) Found a match. Car Bounding Box ((772, 488), (815, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 488), (815, 531)) Found a match. Car Bounding Box ((824, 488), (867, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((824, 488), (867, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34
48%|████▊ | 611/1261 [1:07:00<1:12:59, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((668, 438), (711, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((668, 436), (711, 479)) Found a match. Car Bounding Box ((720, 438), (763, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((720, 436), (763, 479)) Found a match. Car Bounding Box ((771, 438), (815, 479)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 436), (815, 479)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((668, 488), (711, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((668, 488), (711, 531)) Found a match. Car Bounding Box ((720, 488), (763, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((720, 488), (763, 531)) Found a match. Car Bounding Box ((772, 488), (815, 531)) | length nonzerox: 1936 | length nonzeroy: 1936 Checked against Bounding box: ((772, 488), (815, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((304, 436), (919, 635)) checking against smoothing factor Car number: 10 Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34
49%|████▊ | 612/1261 [1:07:06<1:11:31, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 114336 | length nonzeroy: 114336 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▊ | 613/1261 [1:07:13<1:10:23, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117632 | length nonzeroy: 117632 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▊ | 614/1261 [1:07:19<1:09:53, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 103936 | length nonzeroy: 103936 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 615/1261 [1:07:26<1:10:44, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 89184 | length nonzeroy: 89184 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 616/1261 [1:07:33<1:11:57, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 617/1261 [1:07:41<1:18:42, 7.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 618/1261 [1:07:48<1:15:56, 7.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 619/1261 [1:07:54<1:13:35, 6.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Removing Car: ((824, 448), (895, 479)) Carlist now has size: 31 Found possible false positive for car: ((824, 448), (895, 479)) checking against smoothing factor Car number: 32 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 620/1261 [1:08:00<1:10:24, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118592 | length nonzeroy: 118592 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 621/1261 [1:08:06<1:08:32, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 622/1261 [1:08:15<1:14:48, 7.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 623/1261 [1:08:21<1:12:33, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Removing Car: ((876, 438), (895, 479)) Carlist now has size: 30 Found possible false positive for car: ((876, 438), (895, 479)) checking against smoothing factor Car number: 23 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
49%|████▉ | 624/1261 [1:08:27<1:10:56, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
50%|████▉ | 625/1261 [1:08:34<1:11:14, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Removing Car: ((876, 488), (895, 531)) Carlist now has size: 29 Found possible false positive for car: ((876, 488), (895, 531)) checking against smoothing factor Car number: 34 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
50%|████▉ | 626/1261 [1:08:40<1:08:35, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((876, 436), (919, 479)) Carlist now has size: 28 Found possible false positive for car: ((876, 436), (919, 479)) checking against smoothing factor Car number: 13 Removing Car: ((824, 437), (867, 479)) Carlist now has size: 27 Found possible false positive for car: ((824, 437), (867, 479)) checking against smoothing factor Car number: 22 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
50%|████▉ | 627/1261 [1:08:47<1:07:52, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((824, 488), (867, 531)) Carlist now has size: 26 Found possible false positive for car: ((824, 488), (867, 531)) checking against smoothing factor Car number: 20 Removing Car: ((668, 438), (711, 479)) Carlist now has size: 25 Found possible false positive for car: ((668, 438), (711, 479)) checking against smoothing factor Car number: 30 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33 Removing Car: ((668, 488), (711, 531)) Carlist now has size: 24 Found possible false positive for car: ((668, 488), (711, 531)) checking against smoothing factor Car number: 37
50%|████▉ | 628/1261 [1:08:52<1:06:18, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Removing Car: ((771, 438), (815, 479)) Carlist now has size: 23 Found possible false positive for car: ((771, 438), (815, 479)) checking against smoothing factor Car number: 31 Removing Car: ((720, 488), (763, 531)) Carlist now has size: 22 Found possible false positive for car: ((720, 488), (763, 531)) checking against smoothing factor Car number: 38
50%|████▉ | 629/1261 [1:09:00<1:09:09, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26 Removing Car: ((772, 488), (815, 531)) Carlist now has size: 21 Found possible false positive for car: ((772, 488), (815, 531)) checking against smoothing factor Car number: 33
50%|████▉ | 630/1261 [1:09:06<1:08:52, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583)) Removing Car: ((720, 438), (763, 479)) Carlist now has size: 20 Found possible false positive for car: ((720, 438), (763, 479)) checking against smoothing factor Car number: 26
50%|█████ | 631/1261 [1:09:12<1:07:56, 6.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
50%|█████ | 632/1261 [1:09:18<1:05:44, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
50%|█████ | 633/1261 [1:09:24<1:05:09, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
50%|█████ | 634/1261 [1:09:31<1:07:03, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
50%|█████ | 635/1261 [1:09:37<1:05:57, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
50%|█████ | 636/1261 [1:09:43<1:04:50, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 637/1261 [1:09:50<1:06:07, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 638/1261 [1:09:57<1:06:42, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 639/1261 [1:10:03<1:06:17, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 640/1261 [1:10:10<1:08:31, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 641/1261 [1:10:16<1:06:44, 6.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 642/1261 [1:10:22<1:04:41, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 643/1261 [1:10:28<1:04:31, 6.26s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 644/1261 [1:10:35<1:07:05, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 645/1261 [1:10:41<1:05:15, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████ | 646/1261 [1:10:47<1:02:45, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████▏ | 647/1261 [1:10:53<1:02:14, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████▏ | 648/1261 [1:10:59<1:03:06, 6.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
51%|█████▏ | 649/1261 [1:11:06<1:04:42, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 650/1261 [1:11:12<1:04:02, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 651/1261 [1:11:18<1:03:12, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 652/1261 [1:11:24<1:02:54, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 653/1261 [1:11:30<1:02:01, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 654/1261 [1:11:37<1:02:42, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 655/1261 [1:11:43<1:02:55, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 656/1261 [1:11:49<1:01:46, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 657/1261 [1:11:55<1:00:53, 6.05s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 658/1261 [1:12:03<1:07:12, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 659/1261 [1:12:09<1:06:18, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 660/1261 [1:12:16<1:05:32, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 661/1261 [1:12:22<1:03:48, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
52%|█████▏ | 662/1261 [1:12:27<1:01:33, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 663/1261 [1:12:33<1:00:25, 6.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 664/1261 [1:12:39<59:47, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 665/1261 [1:12:46<1:01:49, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 666/1261 [1:12:54<1:06:55, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 667/1261 [1:13:00<1:04:46, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 668/1261 [1:13:06<1:03:29, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 669/1261 [1:13:12<1:01:42, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 670/1261 [1:13:18<1:00:18, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 671/1261 [1:13:25<1:02:19, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 672/1261 [1:13:33<1:07:47, 6.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 673/1261 [1:13:40<1:07:02, 6.84s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
53%|█████▎ | 674/1261 [1:13:46<1:06:19, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▎ | 675/1261 [1:13:52<1:04:37, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▎ | 676/1261 [1:13:58<1:02:01, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▎ | 677/1261 [1:14:04<1:01:21, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 678/1261 [1:14:11<1:03:21, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 679/1261 [1:14:17<1:00:28, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 680/1261 [1:14:23<1:01:02, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 681/1261 [1:14:29<58:36, 6.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 682/1261 [1:14:34<56:40, 5.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 683/1261 [1:14:40<55:10, 5.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 684/1261 [1:14:45<54:04, 5.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 685/1261 [1:14:51<54:56, 5.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 686/1261 [1:14:59<1:00:15, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
54%|█████▍ | 687/1261 [1:15:05<1:01:17, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 688/1261 [1:15:13<1:03:38, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 689/1261 [1:15:19<1:01:57, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 690/1261 [1:15:26<1:03:00, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 691/1261 [1:15:31<1:00:31, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 692/1261 [1:15:38<59:58, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▍ | 693/1261 [1:15:44<1:00:46, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 694/1261 [1:15:51<1:01:33, 6.51s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 695/1261 [1:15:58<1:03:03, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 696/1261 [1:16:04<59:45, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 697/1261 [1:16:09<57:09, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 698/1261 [1:16:15<55:12, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
55%|█████▌ | 699/1261 [1:16:21<57:48, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 700/1261 [1:16:28<59:26, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 701/1261 [1:16:34<58:48, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 702/1261 [1:16:41<58:25, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 703/1261 [1:16:47<59:30, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 704/1261 [1:16:54<59:52, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 705/1261 [1:17:00<1:00:11, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 706/1261 [1:17:07<1:00:58, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 707/1261 [1:17:14<1:01:25, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 708/1261 [1:17:20<1:00:49, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▌ | 709/1261 [1:17:27<1:00:05, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▋ | 710/1261 [1:17:35<1:04:03, 6.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▋ | 711/1261 [1:17:42<1:03:05, 6.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
56%|█████▋ | 712/1261 [1:17:48<1:02:19, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 713/1261 [1:17:54<1:00:47, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 714/1261 [1:18:01<59:56, 6.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 715/1261 [1:18:07<57:57, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 716/1261 [1:18:14<1:00:51, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 717/1261 [1:18:21<1:00:16, 6.65s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 718/1261 [1:18:27<58:24, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 719/1261 [1:18:33<57:03, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 720/1261 [1:18:38<54:58, 6.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 721/1261 [1:18:44<54:42, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 722/1261 [1:18:50<54:42, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 723/1261 [1:18:56<53:31, 5.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 724/1261 [1:19:03<54:47, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
57%|█████▋ | 725/1261 [1:19:09<56:22, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 726/1261 [1:19:16<55:59, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 727/1261 [1:19:22<55:05, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 728/1261 [1:19:27<53:54, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 729/1261 [1:19:34<54:22, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 730/1261 [1:19:40<55:05, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 731/1261 [1:19:47<56:03, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 732/1261 [1:19:55<1:01:53, 7.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 733/1261 [1:20:02<1:00:22, 6.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 734/1261 [1:20:09<1:02:29, 7.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 735/1261 [1:20:16<59:54, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 736/1261 [1:20:21<56:53, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
58%|█████▊ | 737/1261 [1:20:27<54:46, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▊ | 738/1261 [1:20:33<53:00, 6.08s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▊ | 739/1261 [1:20:39<52:16, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▊ | 740/1261 [1:20:45<52:18, 6.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 741/1261 [1:20:51<52:50, 6.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 742/1261 [1:20:57<52:31, 6.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 743/1261 [1:21:03<53:16, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119072 | length nonzeroy: 119072 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 744/1261 [1:21:10<54:04, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 745/1261 [1:21:16<52:36, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 746/1261 [1:21:21<51:34, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 747/1261 [1:21:27<51:41, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 748/1261 [1:21:33<50:58, 5.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 749/1261 [1:21:39<51:17, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
59%|█████▉ | 750/1261 [1:21:45<51:24, 6.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119136 | length nonzeroy: 119136 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 751/1261 [1:21:52<52:23, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 752/1261 [1:21:58<52:14, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 753/1261 [1:22:05<53:48, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 754/1261 [1:22:13<58:29, 6.92s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 755/1261 [1:22:23<1:05:09, 7.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|█████▉ | 756/1261 [1:22:30<1:02:48, 7.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 757/1261 [1:22:37<1:02:11, 7.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 758/1261 [1:22:44<1:00:49, 7.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 759/1261 [1:22:50<58:24, 6.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 760/1261 [1:22:56<56:41, 6.79s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 761/1261 [1:23:03<55:45, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
60%|██████ | 762/1261 [1:23:09<53:38, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 763/1261 [1:23:16<54:48, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 764/1261 [1:23:22<54:14, 6.55s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 765/1261 [1:23:29<54:02, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 766/1261 [1:23:35<54:27, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 767/1261 [1:23:42<54:16, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 768/1261 [1:23:49<54:47, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 769/1261 [1:23:56<55:04, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119296 | length nonzeroy: 119296 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 770/1261 [1:24:01<52:17, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 771/1261 [1:24:07<50:22, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████ | 772/1261 [1:24:13<48:50, 5.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████▏ | 773/1261 [1:24:18<47:50, 5.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████▏ | 774/1261 [1:24:25<50:37, 6.24s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
61%|██████▏ | 775/1261 [1:24:33<54:41, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 776/1261 [1:24:40<54:09, 6.70s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 777/1261 [1:24:46<53:23, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 778/1261 [1:24:53<53:09, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 779/1261 [1:24:59<53:03, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 780/1261 [1:25:05<51:20, 6.41s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 781/1261 [1:25:11<50:31, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118880 | length nonzeroy: 118880 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 782/1261 [1:25:18<50:35, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 116800 | length nonzeroy: 116800 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found possible false positive for car: ((928, 540), (959, 582)) checking against smoothing factor Car number: 5 Found possible false positive for car: ((928, 488), (959, 531)) checking against smoothing factor Car number: 45
62%|██████▏ | 783/1261 [1:25:24<50:28, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 784/1261 [1:25:31<50:31, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 785/1261 [1:25:38<51:55, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 786/1261 [1:25:44<51:36, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 787/1261 [1:25:51<52:59, 6.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
62%|██████▏ | 788/1261 [1:25:58<53:18, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 789/1261 [1:26:05<52:34, 6.68s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 790/1261 [1:26:11<51:47, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 791/1261 [1:26:17<50:06, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 792/1261 [1:26:23<50:24, 6.45s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 793/1261 [1:26:30<49:33, 6.35s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 794/1261 [1:26:37<51:17, 6.59s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 795/1261 [1:26:44<52:32, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 796/1261 [1:26:51<52:34, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 797/1261 [1:26:58<52:46, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 798/1261 [1:27:04<51:59, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 799/1261 [1:27:11<52:07, 6.77s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
63%|██████▎ | 800/1261 [1:27:18<52:43, 6.86s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▎ | 801/1261 [1:27:24<50:47, 6.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▎ | 802/1261 [1:27:30<49:14, 6.44s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▎ | 803/1261 [1:27:37<50:07, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 804/1261 [1:27:44<50:47, 6.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 805/1261 [1:27:51<51:32, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 806/1261 [1:27:57<50:30, 6.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 807/1261 [1:28:04<49:27, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 808/1261 [1:28:10<49:06, 6.50s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 809/1261 [1:28:16<47:58, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 810/1261 [1:28:22<47:20, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 811/1261 [1:28:29<47:17, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 812/1261 [1:28:35<47:37, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
64%|██████▍ | 813/1261 [1:28:41<46:14, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 814/1261 [1:28:47<45:30, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 815/1261 [1:28:53<45:15, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 816/1261 [1:28:59<45:11, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 817/1261 [1:29:05<45:52, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 818/1261 [1:29:13<49:25, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▍ | 819/1261 [1:29:19<48:20, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 820/1261 [1:29:26<47:16, 6.43s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 821/1261 [1:29:32<46:28, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 822/1261 [1:29:38<46:02, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 823/1261 [1:29:44<45:54, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 824/1261 [1:29:50<45:49, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
65%|██████▌ | 825/1261 [1:29:57<45:45, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 826/1261 [1:30:03<46:07, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 827/1261 [1:30:10<46:14, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 828/1261 [1:30:17<48:15, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 829/1261 [1:30:23<47:14, 6.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 830/1261 [1:30:29<45:55, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 831/1261 [1:30:35<44:54, 6.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117808 | length nonzeroy: 117808 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
66%|██████▌ | 832/1261 [1:30:42<46:22, 6.49s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 833/1261 [1:30:49<47:10, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 834/1261 [1:30:57<49:30, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▌ | 835/1261 [1:31:04<48:55, 6.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▋ | 836/1261 [1:31:11<50:31, 7.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▋ | 837/1261 [1:31:19<50:20, 7.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
66%|██████▋ | 838/1261 [1:31:26<50:25, 7.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 839/1261 [1:31:36<56:24, 8.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 840/1261 [1:31:44<57:23, 8.18s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 841/1261 [1:31:52<55:47, 7.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 842/1261 [1:31:59<54:00, 7.73s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117760 | length nonzeroy: 117760 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
67%|██████▋ | 843/1261 [1:32:06<51:57, 7.46s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
67%|██████▋ | 844/1261 [1:32:14<52:34, 7.56s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 845/1261 [1:32:21<51:08, 7.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 846/1261 [1:32:27<49:02, 7.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 847/1261 [1:32:33<47:07, 6.83s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 848/1261 [1:32:39<45:24, 6.60s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 849/1261 [1:32:46<44:53, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119296 | length nonzeroy: 119296 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 850/1261 [1:32:52<43:44, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
67%|██████▋ | 851/1261 [1:32:58<42:58, 6.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119104 | length nonzeroy: 119104 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 852/1261 [1:33:04<42:48, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 853/1261 [1:33:11<43:40, 6.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 854/1261 [1:33:18<44:12, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
68%|██████▊ | 855/1261 [1:33:24<43:18, 6.40s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 856/1261 [1:33:30<43:46, 6.49s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 857/1261 [1:33:37<45:02, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 858/1261 [1:33:45<46:50, 6.97s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 859/1261 [1:33:53<48:14, 7.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 860/1261 [1:33:59<45:20, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 861/1261 [1:34:05<43:48, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 862/1261 [1:34:12<45:44, 6.88s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
68%|██████▊ | 863/1261 [1:34:19<44:33, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▊ | 864/1261 [1:34:25<44:28, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▊ | 865/1261 [1:34:31<43:02, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▊ | 866/1261 [1:34:38<42:58, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118224 | length nonzeroy: 118224 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 867/1261 [1:34:44<41:13, 6.28s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 868/1261 [1:34:50<40:30, 6.19s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119168 | length nonzeroy: 119168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 869/1261 [1:34:56<41:20, 6.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 870/1261 [1:35:02<39:52, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 871/1261 [1:35:08<39:07, 6.02s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 872/1261 [1:35:13<38:12, 5.89s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 873/1261 [1:35:20<39:00, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 874/1261 [1:35:26<38:54, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 875/1261 [1:35:32<39:14, 6.10s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
69%|██████▉ | 876/1261 [1:35:38<39:19, 6.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|██████▉ | 877/1261 [1:35:45<39:53, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
70%|██████▉ | 878/1261 [1:35:51<40:12, 6.30s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
70%|██████▉ | 879/1261 [1:35:58<40:22, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|██████▉ | 880/1261 [1:36:04<40:34, 6.39s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|██████▉ | 881/1261 [1:36:12<42:41, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|██████▉ | 882/1261 [1:36:18<42:26, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 883/1261 [1:36:25<41:44, 6.62s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 884/1261 [1:36:35<47:50, 7.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 885/1261 [1:36:42<47:49, 7.63s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 886/1261 [1:36:50<48:43, 7.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 887/1261 [1:36:57<46:51, 7.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 888/1261 [1:37:04<45:04, 7.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
70%|███████ | 889/1261 [1:37:11<43:37, 7.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
71%|███████ | 890/1261 [1:37:18<45:12, 7.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
71%|███████ | 891/1261 [1:37:25<44:07, 7.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 892/1261 [1:37:33<45:09, 7.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 893/1261 [1:37:41<46:08, 7.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 894/1261 [1:37:50<48:46, 7.98s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 895/1261 [1:37:59<50:32, 8.29s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119360 | length nonzeroy: 119360 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 896/1261 [1:38:05<46:35, 7.66s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 897/1261 [1:38:13<46:19, 7.64s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████ | 898/1261 [1:38:19<42:46, 7.07s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████▏ | 899/1261 [1:38:25<40:55, 6.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████▏ | 900/1261 [1:38:31<40:13, 6.69s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1024 | length nonzeroy: 1024 Checked against Bounding box: ((928, 448), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
71%|███████▏ | 901/1261 [1:38:38<40:32, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 445), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
72%|███████▏ | 902/1261 [1:38:45<41:36, 6.96s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 903/1261 [1:38:52<40:59, 6.87s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 904/1261 [1:38:58<39:21, 6.61s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 905/1261 [1:39:04<38:42, 6.52s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 906/1261 [1:39:10<37:42, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 907/1261 [1:39:17<37:26, 6.34s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 908/1261 [1:39:23<36:28, 6.20s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 909/1261 [1:39:29<37:20, 6.36s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 910/1261 [1:39:36<37:18, 6.38s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 911/1261 [1:39:42<36:49, 6.31s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 912/1261 [1:39:48<37:03, 6.37s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
72%|███████▏ | 913/1261 [1:39:55<36:39, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118944 | length nonzeroy: 118944 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
72%|███████▏ | 914/1261 [1:40:00<35:35, 6.15s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
73%|███████▎ | 915/1261 [1:40:06<34:38, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 916/1261 [1:40:12<33:56, 5.90s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 917/1261 [1:40:18<33:54, 5.91s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 918/1261 [1:40:23<33:15, 5.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 919/1261 [1:40:29<33:06, 5.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 920/1261 [1:40:35<33:42, 5.93s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 921/1261 [1:40:41<33:56, 5.99s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 922/1261 [1:40:49<36:58, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 923/1261 [1:40:58<40:57, 7.27s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 924/1261 [1:41:04<38:58, 6.94s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
73%|███████▎ | 925/1261 [1:41:11<37:35, 6.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
73%|███████▎ | 926/1261 [1:41:17<36:42, 6.57s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
74%|███████▎ | 927/1261 [1:41:24<37:23, 6.72s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▎ | 928/1261 [1:41:30<36:16, 6.54s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▎ | 929/1261 [1:41:36<36:08, 6.53s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 930/1261 [1:41:42<34:27, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 931/1261 [1:41:48<33:30, 6.09s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 932/1261 [1:41:54<34:08, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 933/1261 [1:42:00<33:34, 6.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 934/1261 [1:42:07<34:29, 6.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 935/1261 [1:42:13<34:18, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
74%|███████▍ | 936/1261 [1:42:19<33:43, 6.23s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
74%|███████▍ | 937/1261 [1:42:25<33:17, 6.16s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
74%|███████▍ | 938/1261 [1:42:31<32:54, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
74%|███████▍ | 939/1261 [1:42:38<33:24, 6.22s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 940/1261 [1:42:44<32:43, 6.12s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 941/1261 [1:42:50<32:34, 6.11s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 942/1261 [1:42:56<32:49, 6.17s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 943/1261 [1:43:02<31:56, 6.03s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 944/1261 [1:43:09<33:02, 6.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▍ | 945/1261 [1:43:17<37:03, 7.04s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▌ | 946/1261 [1:43:26<38:57, 7.42s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▌ | 947/1261 [1:43:33<39:05, 7.47s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▌ | 948/1261 [1:43:40<37:10, 7.13s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
75%|███████▌ | 949/1261 [1:43:46<35:06, 6.75s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
75%|███████▌ | 950/1261 [1:43:52<34:57, 6.74s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▌ | 951/1261 [1:43:59<35:13, 6.82s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
75%|███████▌ | 952/1261 [1:44:06<35:00, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 953/1261 [1:44:14<36:15, 7.06s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 954/1261 [1:44:20<34:46, 6.80s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 955/1261 [1:44:27<34:45, 6.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 956/1261 [1:44:36<38:04, 7.49s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 957/1261 [1:44:42<36:11, 7.14s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 958/1261 [1:44:50<36:35, 7.25s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 959/1261 [1:44:55<34:02, 6.76s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▌ | 960/1261 [1:45:01<31:42, 6.32s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119008 | length nonzeroy: 119008 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1152 | length nonzeroy: 1152 Checked against Bounding box: ((928, 540), (959, 575))
76%|███████▌ | 961/1261 [1:45:06<30:02, 6.01s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118176 | length nonzeroy: 118176 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 576)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▋ | 962/1261 [1:45:11<28:47, 5.78s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▋ | 963/1261 [1:45:17<28:10, 5.67s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 119424 | length nonzeroy: 119424 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
76%|███████▋ | 964/1261 [1:45:22<28:16, 5.71s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
77%|███████▋ | 965/1261 [1:45:28<28:38, 5.81s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117168 | length nonzeroy: 117168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
77%|███████▋ | 966/1261 [1:45:36<31:52, 6.48s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 117168 | length nonzeroy: 117168 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
77%|███████▋ | 967/1261 [1:45:42<31:02, 6.33s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
77%|███████▋ | 968/1261 [1:45:50<32:07, 6.58s/it]
Found a match. Car Bounding Box ((256, 436), (295, 479)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 436), (295, 479)) Found a match. Car Bounding Box ((304, 436), (919, 635)) | length nonzerox: 118112 | length nonzeroy: 118112 Checked against Bounding box: ((304, 436), (919, 635)) Found a match. Car Bounding Box ((928, 436), (959, 479)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 436), (959, 479)) Found a match. Car Bounding Box ((256, 488), (295, 531)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 488), (295, 531)) Found a match. Car Bounding Box ((928, 488), (959, 531)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 488), (959, 531)) Found a match. Car Bounding Box ((256, 540), (295, 582)) | length nonzerox: 1760 | length nonzeroy: 1760 Checked against Bounding box: ((256, 540), (295, 583)) Found a match. Car Bounding Box ((928, 540), (959, 582)) | length nonzerox: 1408 | length nonzeroy: 1408 Checked against Bounding box: ((928, 540), (959, 583))
--------------------------------------------------------------------------- KeyboardInterrupt Traceback (most recent call last) <ipython-input-175-14265649a5ea> in <module>() 7 clip = VideoFileClip(VIDEO_FILE_PATH) 8 project_clip = clip.fl_image(process_image) ----> 9 project_clip.write_videofile(VIDEO_OUTPUT_PATH, audio=False) 10 CARS_PREV_FRAMES = None <decorator-gen-172> in write_videofile(self, filename, fps, codec, bitrate, audio, audio_fps, preset, audio_nbytes, audio_codec, audio_bitrate, audio_bufsize, temp_audiofile, rewrite_audio, remove_temp, write_logfile, verbose, threads, ffmpeg_params) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/decorators.py in requires_duration(f, clip, *a, **k) 52 raise ValueError("Attribute 'duration' not set") 53 else: ---> 54 return f(clip, *a, **k) 55 56 <decorator-gen-171> in write_videofile(self, filename, fps, codec, bitrate, audio, audio_fps, preset, audio_nbytes, audio_codec, audio_bitrate, audio_bufsize, temp_audiofile, rewrite_audio, remove_temp, write_logfile, verbose, threads, ffmpeg_params) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/decorators.py in use_clip_fps_by_default(f, clip, *a, **k) 135 for (k,v) in k.items()} 136 --> 137 return f(clip, *new_a, **new_kw) <decorator-gen-170> in write_videofile(self, filename, fps, codec, bitrate, audio, audio_fps, preset, audio_nbytes, audio_codec, audio_bitrate, audio_bufsize, temp_audiofile, rewrite_audio, remove_temp, write_logfile, verbose, threads, ffmpeg_params) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/decorators.py in convert_masks_to_RGB(f, clip, *a, **k) 20 if clip.ismask: 21 clip = clip.to_RGB() ---> 22 return f(clip, *a, **k) 23 24 @decorator.decorator /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/video/VideoClip.py in write_videofile(self, filename, fps, codec, bitrate, audio, audio_fps, preset, audio_nbytes, audio_codec, audio_bitrate, audio_bufsize, temp_audiofile, rewrite_audio, remove_temp, write_logfile, verbose, threads, ffmpeg_params) 336 audiofile = audiofile, 337 verbose=verbose, threads=threads, --> 338 ffmpeg_params=ffmpeg_params) 339 340 if remove_temp and make_audio: /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/video/io/ffmpeg_writer.py in ffmpeg_write_video(clip, filename, fps, codec, bitrate, preset, withmask, write_logfile, audiofile, verbose, threads, ffmpeg_params) 214 215 for t,frame in clip.iter_frames(progress_bar=True, with_times=True, --> 216 fps=fps, dtype="uint8"): 217 if withmask: 218 mask = (255*clip.mask.get_frame(t)) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/tqdm/_tqdm.py in __iter__(self) 831 """, fp_write=getattr(self.fp, 'write', sys.stderr.write)) 832 --> 833 for obj in iterable: 834 yield obj 835 # Update and print the progressbar. /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/Clip.py in generator() 471 for t in np.arange(0, self.duration, 1.0/fps): 472 --> 473 frame = self.get_frame(t) 474 475 if (dtype is not None) and (frame.dtype != dtype): <decorator-gen-135> in get_frame(self, t) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/decorators.py in wrapper(f, *a, **kw) 87 new_kw = {k: fun(v) if k in varnames else v 88 for (k,v) in kw.items()} ---> 89 return f(*new_a, **new_kw) 90 return decorator.decorator(wrapper) 91 /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/Clip.py in get_frame(self, t) 93 return frame 94 else: ---> 95 return self.make_frame(t) 96 97 def fl(self, fun, apply_to=[] , keep_duration=True): /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/Clip.py in <lambda>(t) 134 135 #mf = copy(self.make_frame) --> 136 newclip = self.set_make_frame(lambda t: fun(self.get_frame, t)) 137 138 if not keep_duration: /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/moviepy/video/VideoClip.py in <lambda>(gf, t) 511 `get_frame(t)` by another frame, `image_func(get_frame(t))` 512 """ --> 513 return self.fl(lambda gf, t: image_func(gf(t)), apply_to) 514 515 # -------------------------------------------------------------- <ipython-input-173-e392fdbc4ffe> in process_image(img) 44 combined_threshold = 1 45 combined_heatmap = cv2.add(heatmap_1, heatmap_2, heatmap_3) ---> 46 labels.append(label(apply_threshold(combined_heatmap, combined_threshold))) 47 draw_img = draw_multi_frame_labeled_bboxes(img, labels, smoothing_factor=SMOOTHING_FACTOR, debug=True) 48 CARS_PREV_FRAMES.append(carslist) /Users/deanmwebb/anaconda/envs/sdc_dev/lib/python3.5/site-packages/scipy/ndimage/measurements.py in label(input, structure, output) 186 187 try: --> 188 max_label = _ni_label._label(input, structure, output) 189 except _ni_label.NeedMoreBits: 190 # Make another attempt with enough bits, then try to cast to the KeyboardInterrupt:
HTML("""
<video width="960" height="540" controls>
<source src="{0}">
</video>
""".format(VIDEO_OUTPUT_PATH))
At this point, I feel as if I have exhausted all options, as such I now will utilize the new and improved YOLO library to perform feature extraction.
This is ideal because my ultimate goal is to provide real-time detection and the sliding windows is at best 3-4 seconds per frame.
def process_yolo(frame):
if frame is not None:
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
## process image using Yolo libraries ##
## Create directory for prediction input ##
YOLO_INPUT_DIR = 'darkflow/test/process/'
outfile = os.path.join(YOLO_INPUT_DIR, 'out/')
os.makedirs(outfile, exist_ok=True)
im = Image.fromarray(frame)
im.save(YOLO_INPUT_DIR+"yolo_file.jpg")
## Predict
!source activate sdc_dev && cd darkflow && ./flow --test test/process --model cfg/tiny-yolo.cfg --load bin/tiny-yolo.weights
prediction = glob.glob(outfile+'*.jpg')
if len(prediction) > 0:
copy_img = cv2.imread(prediction[0])
else:
copy_img = frame
shutil.rmtree(outfile)
# Return prediction
return copy_img
else:
return frame
from PIL import Image
import shutil
test_ouput = 'test_output_yolo.mp4'
VIDEO_OUTPUT_PATH = os.path.join(WORKING_DIRECTORY, test_ouput)
TEST_VIDEO = 'test_video.mp4'
VIDEO_FILE_PATH = os.path.join(WORKING_DIRECTORY, TEST_VIDEO)
output_dir = 'output_images/'
VIDEO_OUTPUT_PATH = os.path.join(WORKING_DIRECTORY, output_dir, test_ouput)
os.makedirs(os.path.join(WORKING_DIRECTORY, output_dir), exist_ok=True)
clip = VideoFileClip(VIDEO_FILE_PATH)
project_clip = clip.fl_image(process_yolo)
project_clip.write_videofile(VIDEO_OUTPUT_PATH, audio=False)
HTML("""
<video width="960" height="540" controls>
<source src="{0}">
</video>
""".format(VIDEO_OUTPUT_PATH))
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03263092041015625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.853873014450073s
Forwarding 1 inputs ...
Total time = 1.9597301483154297s / 1 inps = 0.510274335912826 ips
Post processing 1 inputs ...
Total time = 0.7521231174468994s / 1 inps = 1.3295695569024986 ips
[MoviePy] >>>> Building video data/output_images/test_output_yolo.mp4
[MoviePy] Writing video data/output_images/test_output_yolo.mp4
0%| | 0/39 [00:00<?, ?it/s]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.057868003845214844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.8580451011657715s
Forwarding 1 inputs ...
Total time = 1.020491123199463s / 1 inps = 0.9799203317563226 ips
Post processing 1 inputs ...
Total time = 0.3682382106781006s / 1 inps = 2.715633443250029 ips
3%|▎ | 1/39 [00:16<10:10, 16.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1939859390258789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7688779830932617s
Forwarding 1 inputs ...
Total time = 0.8478748798370361s / 1 inps = 1.1794193032257339 ips
Post processing 1 inputs ...
Total time = 0.330564022064209s / 1 inps = 3.025132601411049 ips
5%|▌ | 2/39 [00:25<08:39, 14.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05325603485107422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3146679401397705s
Forwarding 1 inputs ...
Total time = 0.8449969291687012s / 1 inps = 1.1834362534119374 ips
Post processing 1 inputs ...
Total time = 0.33769893646240234s / 1 inps = 2.961217498863325 ips
8%|▊ | 3/39 [00:33<07:25, 12.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029345989227294922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.592214822769165s
Forwarding 1 inputs ...
Total time = 0.8617498874664307s / 1 inps = 1.1604295104000868 ips
Post processing 1 inputs ...
Total time = 0.30538487434387207s / 1 inps = 3.2745564172047747 ips
10%|█ | 4/39 [00:41<06:26, 11.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03670001029968262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3507139682769775s
Forwarding 1 inputs ...
Total time = 1.069084882736206s / 1 inps = 0.9353794222967676 ips
Post processing 1 inputs ...
Total time = 0.38805603981018066s / 1 inps = 2.576947392673374 ips
13%|█▎ | 5/39 [00:51<06:02, 10.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025722026824951172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.483466863632202s
Forwarding 1 inputs ...
Total time = 1.1190218925476074s / 1 inps = 0.8936375656810094 ips
Post processing 1 inputs ...
Total time = 0.4574918746948242s / 1 inps = 2.1858311705908715 ips
15%|█▌ | 6/39 [01:01<05:42, 10.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0366520881652832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1715030670166016s
Forwarding 1 inputs ...
Total time = 1.7846319675445557s / 1 inps = 0.5603396208215875 ips
Post processing 1 inputs ...
Total time = 0.7984039783477783s / 1 inps = 1.252498768943268 ips
18%|█▊ | 7/39 [01:12<05:35, 10.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05347895622253418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.652529001235962s
Forwarding 1 inputs ...
Total time = 1.2086939811706543s / 1 inps = 0.8273392732802985 ips
Post processing 1 inputs ...
Total time = 0.5980799198150635s / 1 inps = 1.6720173456236702 ips
21%|██ | 8/39 [01:24<05:40, 10.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09383702278137207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.207198858261108s
Forwarding 1 inputs ...
Total time = 1.749683141708374s / 1 inps = 0.5715320540972976 ips
Post processing 1 inputs ...
Total time = 1.1886930465698242s / 1 inps = 0.8412600737302788 ips
23%|██▎ | 9/39 [01:39<06:05, 12.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09031009674072266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3272929191589355s
Forwarding 1 inputs ...
Total time = 1.1574139595031738s / 1 inps = 0.8639951089144072 ips
Post processing 1 inputs ...
Total time = 0.4482409954071045s / 1 inps = 2.2309427523285175 ips
26%|██▌ | 10/39 [01:49<05:39, 11.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02704000473022461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.127258062362671s
Forwarding 1 inputs ...
Total time = 0.8712201118469238s / 1 inps = 1.147815559353964 ips
Post processing 1 inputs ...
Total time = 0.36722898483276367s / 1 inps = 2.7230965999467625 ips
28%|██▊ | 11/39 [01:59<05:08, 11.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028745174407958984s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.644343852996826s
Forwarding 1 inputs ...
Total time = 0.8891458511352539s / 1 inps = 1.12467487614457 ips
Post processing 1 inputs ...
Total time = 0.3615601062774658s / 1 inps = 2.76579186320016 ips
31%|███ | 12/39 [02:07<04:35, 10.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.032174110412597656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2088239192962646s
Forwarding 1 inputs ...
Total time = 1.053069829940796s / 1 inps = 0.9496046430807162 ips
Post processing 1 inputs ...
Total time = 0.4355149269104004s / 1 inps = 2.2961325507121657 ips
33%|███▎ | 13/39 [02:16<04:16, 9.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07622098922729492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3567981719970703s
Forwarding 1 inputs ...
Total time = 0.9694199562072754s / 1 inps = 1.031544681535508 ips
Post processing 1 inputs ...
Total time = 0.37181901931762695s / 1 inps = 2.689480494664391 ips
36%|███▌ | 14/39 [02:25<04:02, 9.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.24190592765808105s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6203160285949707s
Forwarding 1 inputs ...
Total time = 1.3885719776153564s / 1 inps = 0.7201643242990797 ips
Post processing 1 inputs ...
Total time = 0.49303603172302246s / 1 inps = 2.0282493279553644 ips
38%|███▊ | 15/39 [02:37<04:08, 10.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05510282516479492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3516409397125244s
Forwarding 1 inputs ...
Total time = 1.5328350067138672s / 1 inps = 0.6523859356160105 ips
Post processing 1 inputs ...
Total time = 0.404451847076416s / 1 inps = 2.4724822181639405 ips
41%|████ | 16/39 [02:48<03:59, 10.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09083914756774902s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.551440954208374s
Forwarding 1 inputs ...
Total time = 0.912031888961792s / 1 inps = 1.0964528895347576 ips
Post processing 1 inputs ...
Total time = 0.6404740810394287s / 1 inps = 1.5613434323167221 ips
44%|████▎ | 17/39 [03:00<03:59, 10.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04784893989562988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.795542001724243s
Forwarding 1 inputs ...
Total time = 1.1483919620513916s / 1 inps = 0.8707828276799181 ips
Post processing 1 inputs ...
Total time = 0.7021200656890869s / 1 inps = 1.4242578283509995 ips
46%|████▌ | 18/39 [03:09<03:39, 10.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03414011001586914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9946579933166504s
Forwarding 1 inputs ...
Total time = 1.3255350589752197s / 1 inps = 0.7544123357801693 ips
Post processing 1 inputs ...
Total time = 0.40399885177612305s / 1 inps = 2.4752545597682847 ips
49%|████▊ | 19/39 [03:19<03:23, 10.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025476932525634766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.499868869781494s
Forwarding 1 inputs ...
Total time = 0.9863419532775879s / 1 inps = 1.0138471720451785 ips
Post processing 1 inputs ...
Total time = 0.32744789123535156s / 1 inps = 3.053921026112991 ips
51%|█████▏ | 20/39 [03:30<03:18, 10.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1051781177520752s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.177940845489502s
Forwarding 1 inputs ...
Total time = 1.472571849822998s / 1 inps = 0.6790840121792354 ips
Post processing 1 inputs ...
Total time = 0.37415289878845215s / 1 inps = 2.672704135764039 ips
54%|█████▍ | 21/39 [03:44<03:29, 11.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07931804656982422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8017420768737793s
Forwarding 1 inputs ...
Total time = 0.9733710289001465s / 1 inps = 1.0273574724429007 ips
Post processing 1 inputs ...
Total time = 0.38155388832092285s / 1 inps = 2.6208617723714704 ips
56%|█████▋ | 22/39 [03:56<03:17, 11.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.050692081451416016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7507879734039307s
Forwarding 1 inputs ...
Total time = 1.0553028583526611s / 1 inps = 0.9475952728499291 ips
Post processing 1 inputs ...
Total time = 0.33002400398254395s / 1 inps = 3.0300826240896503 ips
59%|█████▉ | 23/39 [04:05<02:52, 10.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05413007736206055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7337210178375244s
Forwarding 1 inputs ...
Total time = 0.8499948978424072s / 1 inps = 1.1764776500875 ips
Post processing 1 inputs ...
Total time = 0.34177494049072266s / 1 inps = 2.9259020528661157 ips
62%|██████▏ | 24/39 [04:13<02:31, 10.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.039788007736206055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8812849521636963s
Forwarding 1 inputs ...
Total time = 1.0157392024993896s / 1 inps = 0.9845046814569519 ips
Post processing 1 inputs ...
Total time = 0.423569917678833s / 1 inps = 2.360885318485338 ips
64%|██████▍ | 25/39 [04:23<02:21, 10.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037962913513183594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8685600757598877s
Forwarding 1 inputs ...
Total time = 0.9156479835510254s / 1 inps = 1.0921227567409086 ips
Post processing 1 inputs ...
Total time = 0.48528099060058594s / 1 inps = 2.0606618008308866 ips
67%|██████▋ | 26/39 [04:34<02:15, 10.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1083228588104248s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0111238956451416s
Forwarding 1 inputs ...
Total time = 0.8269660472869873s / 1 inps = 1.2092394884659197 ips
Post processing 1 inputs ...
Total time = 0.3615598678588867s / 1 inps = 2.765793687009229 ips
69%|██████▉ | 27/39 [04:44<02:00, 10.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07377195358276367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.709012031555176s
Forwarding 1 inputs ...
Total time = 0.9101090431213379s / 1 inps = 1.0987694359901856 ips
Post processing 1 inputs ...
Total time = 0.4902989864349365s / 1 inps = 2.0395718279395254 ips
72%|███████▏ | 28/39 [04:52<01:44, 9.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028543949127197266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3288979530334473s
Forwarding 1 inputs ...
Total time = 0.8985099792480469s / 1 inps = 1.1129536934435487 ips
Post processing 1 inputs ...
Total time = 0.361889123916626s / 1 inps = 2.7632772965854193 ips
74%|███████▍ | 29/39 [05:01<01:35, 9.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06109905242919922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.9231390953063965s
Forwarding 1 inputs ...
Total time = 1.0339128971099854s / 1 inps = 0.9671994640894999 ips
Post processing 1 inputs ...
Total time = 0.4872090816497803s / 1 inps = 2.0525068962462987 ips
77%|███████▋ | 30/39 [05:14<01:33, 10.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049160003662109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8488519191741943s
Forwarding 1 inputs ...
Total time = 1.1544151306152344s / 1 inps = 0.86623951252879 ips
Post processing 1 inputs ...
Total time = 0.4701211452484131s / 1 inps = 2.127111299092062 ips
79%|███████▉ | 31/39 [05:25<01:25, 10.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10382890701293945s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.167284965515137s
Forwarding 1 inputs ...
Total time = 0.9520778656005859s / 1 inps = 1.0503342595504874 ips
Post processing 1 inputs ...
Total time = 0.3383190631866455s / 1 inps = 2.955789693258624 ips
82%|████████▏ | 32/39 [05:37<01:16, 10.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05982804298400879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8944568634033203s
Forwarding 1 inputs ...
Total time = 1.01491117477417s / 1 inps = 0.9853079016718012 ips
Post processing 1 inputs ...
Total time = 0.3486959934234619s / 1 inps = 2.8678276173525865 ips
85%|████████▍ | 33/39 [05:45<01:01, 10.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05588197708129883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.728234052658081s
Forwarding 1 inputs ...
Total time = 0.8330349922180176s / 1 inps = 1.2004297650659617 ips
Post processing 1 inputs ...
Total time = 0.36544203758239746s / 1 inps = 2.73641206308819 ips
87%|████████▋ | 34/39 [05:53<00:48, 9.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02673506736755371s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7189290523529053s
Forwarding 1 inputs ...
Total time = 0.8355450630187988s / 1 inps = 1.1968235398184635 ips
Post processing 1 inputs ...
Total time = 0.3616938591003418s / 1 inps = 2.7647690853456766 ips
90%|████████▉ | 35/39 [06:02<00:36, 9.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029497146606445312s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8441669940948486s
Forwarding 1 inputs ...
Total time = 0.9502220153808594s / 1 inps = 1.0523856360023285 ips
Post processing 1 inputs ...
Total time = 0.3303251266479492s / 1 inps = 3.0273204165475747 ips
92%|█████████▏| 36/39 [06:10<00:26, 8.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02972102165222168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7750160694122314s
Forwarding 1 inputs ...
Total time = 0.9618780612945557s / 1 inps = 1.039632818586316 ips
Post processing 1 inputs ...
Total time = 0.37251901626586914s / 1 inps = 2.6844267173901635 ips
95%|█████████▍| 37/39 [06:18<00:17, 8.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04626798629760742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.786630153656006s
Forwarding 1 inputs ...
Total time = 0.8945670127868652s / 1 inps = 1.117859238834078 ips
Post processing 1 inputs ...
Total time = 0.3175501823425293s / 1 inps = 3.1491085680477995 ips
97%|█████████▋| 38/39 [06:27<00:08, 8.61s/it]
[MoviePy] Done. [MoviePy] >>>> Video ready: data/output_images/test_output_yolo.mp4
from PIL import Image
import shutil
project_ouput = 'project_output_yolo.mp4'
PROJECT_VIDEO = 'project_video.mp4'
output_dir = 'output_images/'
VIDEO_FILE_PATH = os.path.join(WORKING_DIRECTORY, PROJECT_VIDEO)
VIDEO_OUTPUT_PATH = os.path.join(WORKING_DIRECTORY, output_dir, project_ouput)
os.makedirs(os.path.join(WORKING_DIRECTORY, output_dir), exist_ok=True)
clip = VideoFileClip(VIDEO_FILE_PATH)
project_clip = clip.fl_image(process_yolo)
project_clip.write_videofile(VIDEO_OUTPUT_PATH, audio=False)
HTML("""
<video width="960" height="540" controls>
<source src="{0}">
</video>
""".format(VIDEO_OUTPUT_PATH))
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09711599349975586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.877389907836914s
Forwarding 1 inputs ...
Total time = 1.4354240894317627s / 1 inps = 0.6966582262081634 ips
Post processing 1 inputs ...
Total time = 0.537459135055542s / 1 inps = 1.8606065741103428 ips
[MoviePy] >>>> Building video data/output_images/project_output_yolo.mp4
[MoviePy] Writing video data/output_images/project_output_yolo.mp4
0%| | 0/1261 [00:00<?, ?it/s]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06798815727233887s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.642630100250244s
Forwarding 1 inputs ...
Total time = 0.8388028144836426s / 1 inps = 1.192175303579052 ips
Post processing 1 inputs ...
Total time = 0.32978200912475586s / 1 inps = 3.032306106248816 ips
0%| | 1/1261 [00:09<3:13:23, 9.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05501198768615723s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0647199153900146s
Forwarding 1 inputs ...
Total time = 0.7928869724273682s / 1 inps = 1.2612138107636828 ips
Post processing 1 inputs ...
Total time = 0.4955320358276367s / 1 inps = 2.018032998269833 ips
0%| | 2/1261 [00:18<3:11:31, 9.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02487778663635254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.869417905807495s
Forwarding 1 inputs ...
Total time = 0.9162569046020508s / 1 inps = 1.0913969597143942 ips
Post processing 1 inputs ...
Total time = 0.3129079341888428s / 1 inps = 3.1958281997301192 ips
0%| | 3/1261 [00:27<3:11:30, 9.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03315997123718262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.247067928314209s
Forwarding 1 inputs ...
Total time = 1.1851449012756348s / 1 inps = 0.84377867965651 ips
Post processing 1 inputs ...
Total time = 0.43821191787719727s / 1 inps = 2.2820009205688376 ips
0%| | 4/1261 [00:36<3:11:23, 9.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.053488969802856445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9803600311279297s
Forwarding 1 inputs ...
Total time = 0.9943459033966064s / 1 inps = 1.005686247194341 ips
Post processing 1 inputs ...
Total time = 0.42827582359313965s / 1 inps = 2.3349438490602172 ips
0%| | 5/1261 [00:46<3:15:59, 9.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047972917556762695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.4988250732421875s
Forwarding 1 inputs ...
Total time = 1.0931971073150635s / 1 inps = 0.9147481211837823 ips
Post processing 1 inputs ...
Total time = 0.38055992126464844s / 1 inps = 2.6277070813891132 ips
0%| | 6/1261 [00:58<3:30:25, 10.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0242922306060791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8682258129119873s
Forwarding 1 inputs ...
Total time = 1.1144490242004395s / 1 inps = 0.8973043883433334 ips
Post processing 1 inputs ...
Total time = 0.32691311836242676s / 1 inps = 3.0589167085407896 ips
1%| | 7/1261 [01:07<3:25:46, 9.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06011009216308594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3476510047912598s
Forwarding 1 inputs ...
Total time = 0.9101588726043701s / 1 inps = 1.0987092804342546 ips
Post processing 1 inputs ...
Total time = 0.42420291900634766s / 1 inps = 2.357362373513126 ips
1%| | 8/1261 [01:17<3:26:53, 9.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0476071834564209s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2077248096466064s
Forwarding 1 inputs ...
Total time = 0.9603819847106934s / 1 inps = 1.041252351585126 ips
Post processing 1 inputs ...
Total time = 0.3467109203338623s / 1 inps = 2.884247196589766 ips
1%| | 9/1261 [01:28<3:31:04, 10.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02757096290588379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.745048999786377s
Forwarding 1 inputs ...
Total time = 0.9110610485076904s / 1 inps = 1.0976212863429853 ips
Post processing 1 inputs ...
Total time = 0.3462491035461426s / 1 inps = 2.888094119980114 ips
1%| | 10/1261 [01:36<3:18:58, 9.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04486513137817383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7052700519561768s
Forwarding 1 inputs ...
Total time = 0.8852710723876953s / 1 inps = 1.1295975110797027 ips
Post processing 1 inputs ...
Total time = 0.33724498748779297s / 1 inps = 2.9652034488316787 ips
1%| | 11/1261 [01:44<3:10:32, 9.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036695003509521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.421251058578491s
Forwarding 1 inputs ...
Total time = 1.2401821613311768s / 1 inps = 0.8063331590954574 ips
Post processing 1 inputs ...
Total time = 0.3770179748535156s / 1 inps = 2.652393431343782 ips
1%| | 12/1261 [01:54<3:16:10, 9.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02266693115234375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4310481548309326s
Forwarding 1 inputs ...
Total time = 1.0068681240081787s / 1 inps = 0.9931787253519976 ips
Post processing 1 inputs ...
Total time = 0.34539008140563965s / 1 inps = 2.8952771195116074 ips
1%| | 13/1261 [02:03<3:15:39, 9.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023086071014404297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4659039974212646s
Forwarding 1 inputs ...
Total time = 1.6288650035858154s / 1 inps = 0.6139244184131775 ips
Post processing 1 inputs ...
Total time = 0.33896899223327637s / 1 inps = 2.95012235016413 ips
1%| | 14/1261 [02:14<3:23:04, 9.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04888796806335449s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7343571186065674s
Forwarding 1 inputs ...
Total time = 1.0902249813079834s / 1 inps = 0.9172418694719899 ips
Post processing 1 inputs ...
Total time = 0.3649740219116211s / 1 inps = 2.739921035372077 ips
1%| | 15/1261 [02:26<3:35:04, 10.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0483241081237793s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.946871042251587s
Forwarding 1 inputs ...
Total time = 1.1117830276489258s / 1 inps = 0.8994560765284284 ips
Post processing 1 inputs ...
Total time = 0.34192609786987305s / 1 inps = 2.924608581298086 ips
1%|▏ | 16/1261 [02:37<3:39:54, 10.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04287886619567871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3376779556274414s
Forwarding 1 inputs ...
Total time = 1.1300768852233887s / 1 inps = 0.8848955439012668 ips
Post processing 1 inputs ...
Total time = 0.34233903884887695s / 1 inps = 2.9210808190690827 ips
1%|▏ | 17/1261 [02:47<3:37:58, 10.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0274810791015625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.794510841369629s
Forwarding 1 inputs ...
Total time = 1.0105259418487549s / 1 inps = 0.9895836995243311 ips
Post processing 1 inputs ...
Total time = 0.3601870536804199s / 1 inps = 2.776335211890379 ips
1%|▏ | 18/1261 [02:56<3:28:15, 10.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07387185096740723s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7809739112854004s
Forwarding 1 inputs ...
Total time = 0.8735871315002441s / 1 inps = 1.1447055066878815 ips
Post processing 1 inputs ...
Total time = 0.44126391410827637s / 1 inps = 2.2662174903217265 ips
2%|▏ | 19/1261 [03:05<3:21:18, 9.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05434703826904297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.796180009841919s
Forwarding 1 inputs ...
Total time = 0.923886775970459s / 1 inps = 1.0823837141186385 ips
Post processing 1 inputs ...
Total time = 0.31928205490112305s / 1 inps = 3.132026948115469 ips
2%|▏ | 20/1261 [03:14<3:16:17, 9.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02088785171508789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.45849084854126s
Forwarding 1 inputs ...
Total time = 1.05977201461792s / 1 inps = 0.9435991762440815 ips
Post processing 1 inputs ...
Total time = 0.4172348976135254s / 1 inps = 2.396731447248873 ips
2%|▏ | 21/1261 [03:25<3:25:40, 9.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03037095069885254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.586589813232422s
Forwarding 1 inputs ...
Total time = 0.9791040420532227s / 1 inps = 1.0213419177628535 ips
Post processing 1 inputs ...
Total time = 0.3961210250854492s / 1 inps = 2.524480996140725 ips
2%|▏ | 22/1261 [03:35<3:26:19, 9.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03026103973388672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9210028648376465s
Forwarding 1 inputs ...
Total time = 0.8918077945709229s / 1 inps = 1.1213178513214632 ips
Post processing 1 inputs ...
Total time = 0.32248806953430176s / 1 inps = 3.1008899071648726 ips
2%|▏ | 23/1261 [03:44<3:17:53, 9.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019264936447143555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.855100154876709s
Forwarding 1 inputs ...
Total time = 0.9228541851043701s / 1 inps = 1.083594804185566 ips
Post processing 1 inputs ...
Total time = 0.3248560428619385s / 1 inps = 3.078286588699823 ips
2%|▏ | 24/1261 [03:52<3:09:04, 9.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04504513740539551s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.389727830886841s
Forwarding 1 inputs ...
Total time = 0.9742801189422607s / 1 inps = 1.0263988565071638 ips
Post processing 1 inputs ...
Total time = 0.3696470260620117s / 1 inps = 2.705283498837728 ips
2%|▏ | 25/1261 [04:03<3:19:59, 9.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0494389533996582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.662726879119873s
Forwarding 1 inputs ...
Total time = 0.8621740341186523s / 1 inps = 1.159858636919214 ips
Post processing 1 inputs ...
Total time = 0.3198120594024658s / 1 inps = 3.1268364359630203 ips
2%|▏ | 26/1261 [04:11<3:11:02, 9.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03090810775756836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.766758918762207s
Forwarding 1 inputs ...
Total time = 0.93703293800354s / 1 inps = 1.067198344308599 ips
Post processing 1 inputs ...
Total time = 0.34795713424682617s / 1 inps = 2.8739172201902377 ips
2%|▏ | 27/1261 [04:20<3:05:25, 9.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020979881286621094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.19726300239563s
Forwarding 1 inputs ...
Total time = 0.961129903793335s / 1 inps = 1.0404420838986017 ips
Post processing 1 inputs ...
Total time = 0.3288240432739258s / 1 inps = 3.0411401491312278 ips
2%|▏ | 28/1261 [04:28<3:01:51, 8.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03396797180175781s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6277518272399902s
Forwarding 1 inputs ...
Total time = 0.9163751602172852s / 1 inps = 1.0912561180323639 ips
Post processing 1 inputs ...
Total time = 0.32431602478027344s / 1 inps = 3.0834122386567473 ips
2%|▏ | 29/1261 [04:36<2:57:01, 8.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038648128509521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.609571933746338s
Forwarding 1 inputs ...
Total time = 0.8228228092193604s / 1 inps = 1.2153284872459158 ips
Post processing 1 inputs ...
Total time = 0.3470001220703125s / 1 inps = 2.8818433666065695 ips
2%|▏ | 30/1261 [04:44<2:52:03, 8.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03742790222167969s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.603173017501831s
Forwarding 1 inputs ...
Total time = 0.8826820850372314s / 1 inps = 1.1329107239758016 ips
Post processing 1 inputs ...
Total time = 0.33902406692504883s / 1 inps = 2.949643100768652 ips
2%|▏ | 31/1261 [04:52<2:48:34, 8.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03061985969543457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.786374092102051s
Forwarding 1 inputs ...
Total time = 0.9122960567474365s / 1 inps = 1.0961353966225065 ips
Post processing 1 inputs ...
Total time = 0.3266751766204834s / 1 inps = 3.0611447442844892 ips
3%|▎ | 32/1261 [05:00<2:48:53, 8.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05753493309020996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.525678873062134s
Forwarding 1 inputs ...
Total time = 0.9065840244293213s / 1 inps = 1.1030417182008943 ips
Post processing 1 inputs ...
Total time = 0.335529088973999s / 1 inps = 2.980367523596419 ips
3%|▎ | 33/1261 [05:08<2:46:33, 8.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05674099922180176s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5471410751342773s
Forwarding 1 inputs ...
Total time = 0.912390947341919s / 1 inps = 1.0960213962154204 ips
Post processing 1 inputs ...
Total time = 0.3152890205383301s / 1 inps = 3.1716930652789057 ips
3%|▎ | 34/1261 [05:16<2:44:33, 8.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01638197898864746s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.588527202606201s
Forwarding 1 inputs ...
Total time = 0.8406059741973877s / 1 inps = 1.1896180026019945 ips
Post processing 1 inputs ...
Total time = 0.3150060176849365s / 1 inps = 3.1745425288991855 ips
3%|▎ | 35/1261 [05:24<2:43:11, 7.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02533698081970215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.506254196166992s
Forwarding 1 inputs ...
Total time = 0.8714029788970947s / 1 inps = 1.1475746861293339 ips
Post processing 1 inputs ...
Total time = 0.30568981170654297s / 1 inps = 3.2712899210392496 ips
3%|▎ | 36/1261 [05:32<2:41:45, 7.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02930903434753418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4899239540100098s
Forwarding 1 inputs ...
Total time = 0.8612000942230225s / 1 inps = 1.1611703327810283 ips
Post processing 1 inputs ...
Total time = 0.3240339756011963s / 1 inps = 3.086096135890227 ips
3%|▎ | 37/1261 [05:39<2:40:34, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026363134384155273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6493139266967773s
Forwarding 1 inputs ...
Total time = 0.892387866973877s / 1 inps = 1.1205889692237077 ips
Post processing 1 inputs ...
Total time = 0.3459599018096924s / 1 inps = 2.890508393513436 ips
3%|▎ | 38/1261 [05:47<2:41:06, 7.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018780946731567383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5271799564361572s
Forwarding 1 inputs ...
Total time = 0.8946418762207031s / 1 inps = 1.1177656966208294 ips
Post processing 1 inputs ...
Total time = 0.31618595123291016s / 1 inps = 3.16269586330664 ips
3%|▎ | 39/1261 [05:55<2:40:29, 7.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02592611312866211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5765130519866943s
Forwarding 1 inputs ...
Total time = 0.9084830284118652s / 1 inps = 1.1007360277804168 ips
Post processing 1 inputs ...
Total time = 0.32459211349487305s / 1 inps = 3.080789576903245 ips
3%|▎ | 40/1261 [06:03<2:40:12, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026702165603637695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.540842056274414s
Forwarding 1 inputs ...
Total time = 0.8582179546356201s / 1 inps = 1.165205172647055 ips
Post processing 1 inputs ...
Total time = 0.3056049346923828s / 1 inps = 3.2721984709002965 ips
3%|▎ | 41/1261 [06:11<2:39:46, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022330045700073242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5857558250427246s
Forwarding 1 inputs ...
Total time = 0.8882920742034912s / 1 inps = 1.125755851077107 ips
Post processing 1 inputs ...
Total time = 0.32112908363342285s / 1 inps = 3.114012560573697 ips
3%|▎ | 42/1261 [06:19<2:39:22, 7.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02773284912109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4974470138549805s
Forwarding 1 inputs ...
Total time = 0.8765020370483398s / 1 inps = 1.140898660506877 ips
Post processing 1 inputs ...
Total time = 0.30544400215148926s / 1 inps = 3.2739225290272223 ips
3%|▎ | 43/1261 [06:26<2:39:12, 7.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020173072814941406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.546738862991333s
Forwarding 1 inputs ...
Total time = 0.8595290184020996s / 1 inps = 1.1634278524523138 ips
Post processing 1 inputs ...
Total time = 0.3556489944458008s / 1 inps = 2.8117610779647384 ips
3%|▎ | 44/1261 [06:34<2:39:27, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02583599090576172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5249340534210205s
Forwarding 1 inputs ...
Total time = 0.8569769859313965s / 1 inps = 1.1668924795140916 ips
Post processing 1 inputs ...
Total time = 0.3056759834289551s / 1 inps = 3.271437908802603 ips
4%|▎ | 45/1261 [06:42<2:38:22, 7.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027196884155273438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5248098373413086s
Forwarding 1 inputs ...
Total time = 0.9505901336669922s / 1 inps = 1.0519780971662356 ips
Post processing 1 inputs ...
Total time = 0.3086249828338623s / 1 inps = 3.2401783900246204 ips
4%|▎ | 46/1261 [06:50<2:38:08, 7.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026437044143676758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.504070997238159s
Forwarding 1 inputs ...
Total time = 0.862123966217041s / 1 inps = 1.1599259957798789 ips
Post processing 1 inputs ...
Total time = 0.33208703994750977s / 1 inps = 3.011258735535303 ips
4%|▎ | 47/1261 [06:58<2:37:29, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03145480155944824s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.565408945083618s
Forwarding 1 inputs ...
Total time = 0.9109549522399902s / 1 inps = 1.0977491230944545 ips
Post processing 1 inputs ...
Total time = 0.32430005073547363s / 1 inps = 3.0835641182667715 ips
4%|▍ | 48/1261 [07:05<2:38:00, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0441439151763916s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4716219902038574s
Forwarding 1 inputs ...
Total time = 0.8852858543395996s / 1 inps = 1.1295786497638938 ips
Post processing 1 inputs ...
Total time = 0.3232908248901367s / 1 inps = 3.093190165046682 ips
4%|▍ | 49/1261 [07:13<2:37:59, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01998615264892578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6008760929107666s
Forwarding 1 inputs ...
Total time = 0.8588030338287354s / 1 inps = 1.164411349994628 ips
Post processing 1 inputs ...
Total time = 0.33214282989501953s / 1 inps = 3.0107529351636773 ips
4%|▍ | 50/1261 [07:21<2:38:20, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03066396713256836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.103021144866943s
Forwarding 1 inputs ...
Total time = 1.7988190650939941s / 1 inps = 0.5559202809248337 ips
Post processing 1 inputs ...
Total time = 0.4814150333404541s / 1 inps = 2.0772097478160916 ips
4%|▍ | 51/1261 [07:33<3:04:19, 9.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13274908065795898s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.693013906478882s
Forwarding 1 inputs ...
Total time = 1.5759999752044678s / 1 inps = 0.6345177764804606 ips
Post processing 1 inputs ...
Total time = 0.6546461582183838s / 1 inps = 1.5275427609954895 ips
4%|▍ | 52/1261 [07:50<3:46:46, 11.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0488889217376709s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.531195878982544s
Forwarding 1 inputs ...
Total time = 1.0811519622802734s / 1 inps = 0.9249393562500551 ips
Post processing 1 inputs ...
Total time = 0.3479278087615967s / 1 inps = 2.874159451523489 ips
4%|▍ | 53/1261 [08:03<3:57:05, 11.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04148602485656738s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.821413040161133s
Forwarding 1 inputs ...
Total time = 0.9001920223236084s / 1 inps = 1.1108740970829354 ips
Post processing 1 inputs ...
Total time = 0.3621828556060791s / 1 inps = 2.761036268065736 ips
4%|▍ | 54/1261 [08:13<3:48:56, 11.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026779890060424805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9605050086975098s
Forwarding 1 inputs ...
Total time = 1.2508149147033691s / 1 inps = 0.7994787943803421 ips
Post processing 1 inputs ...
Total time = 0.4530649185180664s / 1 inps = 2.207189210921269 ips
4%|▍ | 55/1261 [08:23<3:39:00, 10.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03430008888244629s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1994569301605225s
Forwarding 1 inputs ...
Total time = 0.9460418224334717s / 1 inps = 1.057035721135175 ips
Post processing 1 inputs ...
Total time = 0.34743213653564453s / 1 inps = 2.8782599386784296 ips
4%|▍ | 56/1261 [08:32<3:27:36, 10.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07033586502075195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.264429807662964s
Forwarding 1 inputs ...
Total time = 1.2523670196533203s / 1 inps = 0.7984879706244736 ips
Post processing 1 inputs ...
Total time = 0.3243279457092285s / 1 inps = 3.0832989054126574 ips
5%|▍ | 57/1261 [08:42<3:27:59, 10.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031213998794555664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.794678211212158s
Forwarding 1 inputs ...
Total time = 1.0789289474487305s / 1 inps = 0.9268450924081995 ips
Post processing 1 inputs ...
Total time = 0.39809703826904297s / 1 inps = 2.5119503635296514 ips
5%|▍ | 58/1261 [08:51<3:20:30, 10.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.45090198516845703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.323770046234131s
Forwarding 1 inputs ...
Total time = 0.9403970241546631s / 1 inps = 1.063380651272174 ips
Post processing 1 inputs ...
Total time = 0.34599900245666504s / 1 inps = 2.8901817430102157 ips
5%|▍ | 59/1261 [09:02<3:22:31, 10.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0783998966217041s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6161670684814453s
Forwarding 1 inputs ...
Total time = 1.0655059814453125s / 1 inps = 0.9385212447550445 ips
Post processing 1 inputs ...
Total time = 0.34720396995544434s / 1 inps = 2.880151399560112 ips
5%|▍ | 60/1261 [09:13<3:26:49, 10.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07235097885131836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.687782049179077s
Forwarding 1 inputs ...
Total time = 1.1514058113098145s / 1 inps = 0.8685035199383105 ips
Post processing 1 inputs ...
Total time = 0.4888780117034912s / 1 inps = 2.045500055352272 ips
5%|▍ | 61/1261 [09:24<3:34:02, 10.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06656694412231445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.401093006134033s
Forwarding 1 inputs ...
Total time = 1.0290610790252686s / 1 inps = 0.9717596169774535 ips
Post processing 1 inputs ...
Total time = 0.657416820526123s / 1 inps = 1.521104980550561 ips
5%|▍ | 62/1261 [09:35<3:36:25, 10.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.2153639793395996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.444123983383179s
Forwarding 1 inputs ...
Total time = 1.2157349586486816s / 1 inps = 0.8225477048973929 ips
Post processing 1 inputs ...
Total time = 0.46003198623657227s / 1 inps = 2.1737618902998372 ips
5%|▍ | 63/1261 [09:48<3:44:31, 11.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06964802742004395s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.380064964294434s
Forwarding 1 inputs ...
Total time = 1.097031831741333s / 1 inps = 0.9115505777190502 ips
Post processing 1 inputs ...
Total time = 0.5505449771881104s / 1 inps = 1.816382024058172 ips
5%|▌ | 64/1261 [10:05<4:19:15, 13.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.14578509330749512s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.374288082122803s
Forwarding 1 inputs ...
Total time = 1.768873929977417s / 1 inps = 0.5653314139876361 ips
Post processing 1 inputs ...
Total time = 0.9751691818237305s / 1 inps = 1.0254630874714803 ips
5%|▌ | 65/1261 [10:21<4:39:32, 14.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1021730899810791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.455963134765625s
Forwarding 1 inputs ...
Total time = 1.3868739604949951s / 1 inps = 0.7210460564441528 ips
Post processing 1 inputs ...
Total time = 0.6749379634857178s / 1 inps = 1.48161765095491 ips
5%|▌ | 66/1261 [10:39<5:00:34, 15.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09922981262207031s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.148155927658081s
Forwarding 1 inputs ...
Total time = 1.5978779792785645s / 1 inps = 0.6258300151626697 ips
Post processing 1 inputs ...
Total time = 0.573167085647583s / 1 inps = 1.7446919494167519 ips
5%|▌ | 67/1261 [10:57<5:20:52, 16.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05419301986694336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.464900016784668s
Forwarding 1 inputs ...
Total time = 1.5183470249176025s / 1 inps = 0.6586109654703396 ips
Post processing 1 inputs ...
Total time = 0.5756809711456299s / 1 inps = 1.7370732230560912 ips
5%|▌ | 68/1261 [11:15<5:31:34, 16.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06937599182128906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.988007068634033s
Forwarding 1 inputs ...
Total time = 1.1389131546020508s / 1 inps = 0.8780300727577525 ips
Post processing 1 inputs ...
Total time = 0.4852180480957031s / 1 inps = 2.0609291099632854 ips
5%|▌ | 69/1261 [11:28<5:07:23, 15.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04639601707458496s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.098678827285767s
Forwarding 1 inputs ...
Total time = 1.289262056350708s / 1 inps = 0.7756375013707669 ips
Post processing 1 inputs ...
Total time = 0.7805659770965576s / 1 inps = 1.281121685215724 ips
6%|▌ | 70/1261 [11:43<5:04:25, 15.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0773169994354248s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.22453498840332s
Forwarding 1 inputs ...
Total time = 1.1057090759277344s / 1 inps = 0.9043970260992565 ips
Post processing 1 inputs ...
Total time = 0.49151110649108887s / 1 inps = 2.0345420211132708 ips
6%|▌ | 71/1261 [11:56<4:48:49, 14.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06865501403808594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.806323051452637s
Forwarding 1 inputs ...
Total time = 1.3346490859985352s / 1 inps = 0.7492606187579538 ips
Post processing 1 inputs ...
Total time = 0.4807090759277344s / 1 inps = 2.0802602864738327 ips
6%|▌ | 72/1261 [12:09<4:40:57, 14.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07443594932556152s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.894863128662109s
Forwarding 1 inputs ...
Total time = 1.4432590007781982s / 1 inps = 0.6928763302087878 ips
Post processing 1 inputs ...
Total time = 0.5210380554199219s / 1 inps = 1.9192456090257493 ips
6%|▌ | 73/1261 [12:23<4:42:53, 14.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07292389869689941s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.231873989105225s
Forwarding 1 inputs ...
Total time = 1.7365660667419434s / 1 inps = 0.5758490961856401 ips
Post processing 1 inputs ...
Total time = 0.503105878829956s / 1 inps = 1.9876531801330597 ips
6%|▌ | 74/1261 [12:39<4:51:20, 14.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05845499038696289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.170543909072876s
Forwarding 1 inputs ...
Total time = 0.909308910369873s / 1 inps = 1.0997362816924747 ips
Post processing 1 inputs ...
Total time = 0.3764159679412842s / 1 inps = 2.656635438366915 ips
6%|▌ | 75/1261 [12:50<4:26:55, 13.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04844808578491211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4642250537872314s
Forwarding 1 inputs ...
Total time = 1.0408720970153809s / 1 inps = 0.9607328343870698 ips
Post processing 1 inputs ...
Total time = 0.3286440372467041s / 1 inps = 3.042805852732777 ips
6%|▌ | 76/1261 [12:59<4:03:07, 12.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028451919555664062s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.843596935272217s
Forwarding 1 inputs ...
Total time = 1.034970998764038s / 1 inps = 0.9662106486019411 ips
Post processing 1 inputs ...
Total time = 0.5204730033874512s / 1 inps = 1.9213292399252047 ips
6%|▌ | 77/1261 [13:10<3:55:04, 11.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03469991683959961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.340242862701416s
Forwarding 1 inputs ...
Total time = 1.2782599925994873s / 1 inps = 0.7823134618853134 ips
Post processing 1 inputs ...
Total time = 0.6073598861694336s / 1 inps = 1.6464702769669457 ips
6%|▌ | 78/1261 [13:21<3:46:41, 11.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05362510681152344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.589042901992798s
Forwarding 1 inputs ...
Total time = 1.239149808883667s / 1 inps = 0.8070049261443911 ips
Post processing 1 inputs ...
Total time = 0.5811600685119629s / 1 inps = 1.7206963351086044 ips
6%|▋ | 79/1261 [13:32<3:46:57, 11.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040995121002197266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5910539627075195s
Forwarding 1 inputs ...
Total time = 1.5191130638122559s / 1 inps = 0.6582788495613833 ips
Post processing 1 inputs ...
Total time = 0.5542378425598145s / 1 inps = 1.8042795406776613 ips
6%|▋ | 80/1261 [13:44<3:47:32, 11.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030537843704223633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1782708168029785s
Forwarding 1 inputs ...
Total time = 1.144232988357544s / 1 inps = 0.8739478848931117 ips
Post processing 1 inputs ...
Total time = 0.40465497970581055s / 1 inps = 2.4712410575720902 ips
6%|▋ | 81/1261 [13:54<3:39:35, 11.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03340291976928711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1328210830688477s
Forwarding 1 inputs ...
Total time = 0.9123539924621582s / 1 inps = 1.0960657905396047 ips
Post processing 1 inputs ...
Total time = 0.3717970848083496s / 1 inps = 2.6896391630275165 ips
7%|▋ | 82/1261 [14:03<3:25:18, 10.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06786394119262695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.910907030105591s
Forwarding 1 inputs ...
Total time = 1.028498888015747s / 1 inps = 0.9722907935557139 ips
Post processing 1 inputs ...
Total time = 0.3708820343017578s / 1 inps = 2.6962751158401432 ips
7%|▋ | 83/1261 [14:12<3:14:55, 9.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02927708625793457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.7277209758758545s
Forwarding 1 inputs ...
Total time = 1.9686598777770996s / 1 inps = 0.5079597604890206 ips
Post processing 1 inputs ...
Total time = 0.5581119060516357s / 1 inps = 1.7917553615268715 ips
7%|▋ | 84/1261 [14:25<3:32:25, 10.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09985899925231934s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.925349950790405s
Forwarding 1 inputs ...
Total time = 0.9910001754760742s / 1 inps = 1.009081556942815 ips
Post processing 1 inputs ...
Total time = 0.7090179920196533s / 1 inps = 1.4104014443293293 ips
7%|▋ | 85/1261 [14:39<3:52:41, 11.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05417490005493164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3105080127716064s
Forwarding 1 inputs ...
Total time = 1.0722699165344238s / 1 inps = 0.93260100332946 ips
Post processing 1 inputs ...
Total time = 0.4060170650482178s / 1 inps = 2.462950664108766 ips
7%|▋ | 86/1261 [14:49<3:42:56, 11.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03995203971862793s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.631577968597412s
Forwarding 1 inputs ...
Total time = 1.7407209873199463s / 1 inps = 0.574474604077488 ips
Post processing 1 inputs ...
Total time = 0.44393301010131836s / 1 inps = 2.2525921191843135 ips
7%|▋ | 87/1261 [15:02<3:53:23, 11.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.14031696319580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.909636974334717s
Forwarding 1 inputs ...
Total time = 1.1727499961853027s / 1 inps = 0.8526966559392706 ips
Post processing 1 inputs ...
Total time = 0.4673011302947998s / 1 inps = 2.1399477449779414 ips
7%|▋ | 88/1261 [15:15<3:59:46, 12.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025887012481689453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.834678888320923s
Forwarding 1 inputs ...
Total time = 1.0246009826660156s / 1 inps = 0.9759896944447547 ips
Post processing 1 inputs ...
Total time = 0.4140458106994629s / 1 inps = 2.4151916869069705 ips
7%|▋ | 89/1261 [15:25<3:42:24, 11.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02631402015686035s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.765367031097412s
Forwarding 1 inputs ...
Total time = 0.8720920085906982s / 1 inps = 1.1466680007950092 ips
Post processing 1 inputs ...
Total time = 0.34709811210632324s / 1 inps = 2.8810297870294366 ips
7%|▋ | 90/1261 [15:34<3:26:35, 10.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.061122894287109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.980358123779297s
Forwarding 1 inputs ...
Total time = 1.037775993347168s / 1 inps = 0.963599087289225 ips
Post processing 1 inputs ...
Total time = 0.43375086784362793s / 1 inps = 2.30547089155453 ips
7%|▋ | 91/1261 [15:43<3:16:56, 10.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029111146926879883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9380831718444824s
Forwarding 1 inputs ...
Total time = 0.8696680068969727s / 1 inps = 1.1498640769459367 ips
Post processing 1 inputs ...
Total time = 0.3443748950958252s / 1 inps = 2.9038121368334404 ips
7%|▋ | 92/1261 [15:52<3:15:22, 10.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0205080509185791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9580020904541016s
Forwarding 1 inputs ...
Total time = 1.118553876876831s / 1 inps = 0.8940114738077247 ips
Post processing 1 inputs ...
Total time = 0.48623108863830566s / 1 inps = 2.056635257117163 ips
7%|▋ | 93/1261 [16:01<3:09:44, 9.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04186606407165527s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9592111110687256s
Forwarding 1 inputs ...
Total time = 0.9878988265991211s / 1 inps = 1.012249405581883 ips
Post processing 1 inputs ...
Total time = 0.4401860237121582s / 1 inps = 2.2717668125099526 ips
7%|▋ | 94/1261 [16:15<3:29:34, 10.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08383703231811523s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.478571176528931s
Forwarding 1 inputs ...
Total time = 1.663766860961914s / 1 inps = 0.6010457495359931 ips
Post processing 1 inputs ...
Total time = 0.3770110607147217s / 1 inps = 2.6524420745222757 ips
8%|▊ | 95/1261 [16:29<3:49:00, 11.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07557988166809082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.155755043029785s
Forwarding 1 inputs ...
Total time = 0.9532749652862549s / 1 inps = 1.0490152751464676 ips
Post processing 1 inputs ...
Total time = 0.5474591255187988s / 1 inps = 1.8266203875081113 ips
8%|▊ | 96/1261 [16:39<3:39:07, 11.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05720186233520508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6561689376831055s
Forwarding 1 inputs ...
Total time = 0.9825150966644287s / 1 inps = 1.0177960658262977 ips
Post processing 1 inputs ...
Total time = 0.35356783866882324s / 1 inps = 2.828311544865004 ips
8%|▊ | 97/1261 [16:47<3:20:16, 10.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02540111541748047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5118839740753174s
Forwarding 1 inputs ...
Total time = 0.8534250259399414s / 1 inps = 1.1717490928961505 ips
Post processing 1 inputs ...
Total time = 0.3276650905609131s / 1 inps = 3.051896673790153 ips
8%|▊ | 98/1261 [16:55<3:05:30, 9.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030130863189697266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6544320583343506s
Forwarding 1 inputs ...
Total time = 0.8859789371490479s / 1 inps = 1.128695003989435 ips
Post processing 1 inputs ...
Total time = 0.329395055770874s / 1 inps = 3.035868275738772 ips
8%|▊ | 99/1261 [17:03<2:56:15, 9.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03513002395629883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.721358060836792s
Forwarding 1 inputs ...
Total time = 0.8335981369018555s / 1 inps = 1.199618803991804 ips
Post processing 1 inputs ...
Total time = 0.3274059295654297s / 1 inps = 3.054312429000029 ips
8%|▊ | 100/1261 [17:11<2:51:18, 8.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025506019592285156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6633388996124268s
Forwarding 1 inputs ...
Total time = 0.9283590316772461s / 1 inps = 1.0771694634061153 ips
Post processing 1 inputs ...
Total time = 0.3806610107421875s / 1 inps = 2.6270092596304164 ips
8%|▊ | 101/1261 [17:19<2:47:16, 8.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03603696823120117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7238290309906006s
Forwarding 1 inputs ...
Total time = 0.9142768383026123s / 1 inps = 1.0937606183445878 ips
Post processing 1 inputs ...
Total time = 0.3183748722076416s / 1 inps = 3.1409513981612465 ips
8%|▊ | 102/1261 [17:28<2:45:11, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029829025268554688s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.842550039291382s
Forwarding 1 inputs ...
Total time = 0.9669680595397949s / 1 inps = 1.0341603221888485 ips
Post processing 1 inputs ...
Total time = 0.34859395027160645s / 1 inps = 2.868667110318041 ips
8%|▊ | 103/1261 [17:36<2:43:31, 8.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01838397979736328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8233890533447266s
Forwarding 1 inputs ...
Total time = 0.9917659759521484s / 1 inps = 1.0083023860946092 ips
Post processing 1 inputs ...
Total time = 0.3446528911590576s / 1 inps = 2.9014699300418725 ips
8%|▊ | 104/1261 [17:44<2:44:00, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02131199836730957s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7270848751068115s
Forwarding 1 inputs ...
Total time = 0.9468419551849365s / 1 inps = 1.0561424686812497 ips
Post processing 1 inputs ...
Total time = 0.3507108688354492s / 1 inps = 2.851351608578724 ips
8%|▊ | 105/1261 [17:53<2:43:21, 8.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06351900100708008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.641753911972046s
Forwarding 1 inputs ...
Total time = 0.9557631015777588s / 1 inps = 1.0462843756462408 ips
Post processing 1 inputs ...
Total time = 0.36287999153137207s / 1 inps = 2.7557319867098458 ips
8%|▊ | 106/1261 [18:01<2:42:48, 8.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04209494590759277s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.584110975265503s
Forwarding 1 inputs ...
Total time = 0.9312911033630371s / 1 inps = 1.073778109109863 ips
Post processing 1 inputs ...
Total time = 0.36621999740600586s / 1 inps = 2.730599112782366 ips
8%|▊ | 107/1261 [18:10<2:41:52, 8.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02678203582763672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.984727144241333s
Forwarding 1 inputs ...
Total time = 1.7963879108428955s / 1 inps = 0.5566726395585591 ips
Post processing 1 inputs ...
Total time = 0.345426082611084s / 1 inps = 2.894975366194053 ips
9%|▊ | 108/1261 [18:21<2:58:52, 9.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03163409233093262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8173668384552s
Forwarding 1 inputs ...
Total time = 1.4645359516143799s / 1 inps = 0.6828101412585229 ips
Post processing 1 inputs ...
Total time = 0.3604621887207031s / 1 inps = 2.7742160794979522 ips
9%|▊ | 109/1261 [18:30<2:57:23, 9.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09060788154602051s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8357160091400146s
Forwarding 1 inputs ...
Total time = 0.8906879425048828s / 1 inps = 1.1227276718125303 ips
Post processing 1 inputs ...
Total time = 0.4061238765716553s / 1 inps = 2.4623029023598 ips
9%|▊ | 110/1261 [18:41<3:08:09, 9.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06696391105651855s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5577170848846436s
Forwarding 1 inputs ...
Total time = 0.8257060050964355s / 1 inps = 1.211084809639005 ips
Post processing 1 inputs ...
Total time = 0.36301422119140625s / 1 inps = 2.754713015699544 ips
9%|▉ | 111/1261 [18:49<2:58:20, 9.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.044569969177246094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.746903896331787s
Forwarding 1 inputs ...
Total time = 1.0315229892730713s / 1 inps = 0.969440342483025 ips
Post processing 1 inputs ...
Total time = 0.32667016983032227s / 1 inps = 3.0611916616672286 ips
9%|▉ | 112/1261 [18:58<2:54:48, 9.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02213597297668457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7365529537200928s
Forwarding 1 inputs ...
Total time = 2.442315101623535s / 1 inps = 0.40944757674193943 ips
Post processing 1 inputs ...
Total time = 0.45064711570739746s / 1 inps = 2.219031177932345 ips
9%|▉ | 113/1261 [19:09<3:06:51, 9.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048013925552368164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1633129119873047s
Forwarding 1 inputs ...
Total time = 1.139564037322998s / 1 inps = 0.8775285699162161 ips
Post processing 1 inputs ...
Total time = 0.42331385612487793s / 1 inps = 2.3623134124506406 ips
9%|▉ | 114/1261 [19:20<3:10:35, 9.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08486390113830566s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6068038940429688s
Forwarding 1 inputs ...
Total time = 0.9176549911499023s / 1 inps = 1.0897341698614988 ips
Post processing 1 inputs ...
Total time = 0.44770216941833496s / 1 inps = 2.2336277737926156 ips
9%|▉ | 115/1261 [19:30<3:13:06, 10.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04400300979614258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5679330825805664s
Forwarding 1 inputs ...
Total time = 0.9260199069976807s / 1 inps = 1.079890391603109 ips
Post processing 1 inputs ...
Total time = 0.3576231002807617s / 1 inps = 2.796239949865998 ips
9%|▉ | 116/1261 [19:38<3:01:58, 9.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03479290008544922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7433080673217773s
Forwarding 1 inputs ...
Total time = 0.8713510036468506s / 1 inps = 1.1476431378568648 ips
Post processing 1 inputs ...
Total time = 0.4139859676361084s / 1 inps = 2.415540810984673 ips
9%|▉ | 117/1261 [19:47<2:54:21, 9.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027436017990112305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7540950775146484s
Forwarding 1 inputs ...
Total time = 1.0215668678283691s / 1 inps = 0.9788884423452224 ips
Post processing 1 inputs ...
Total time = 0.3293900489807129s / 1 inps = 3.035914421502618 ips
9%|▉ | 118/1261 [19:55<2:50:58, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038498878479003906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8602709770202637s
Forwarding 1 inputs ...
Total time = 0.877716064453125s / 1 inps = 1.139320607767463 ips
Post processing 1 inputs ...
Total time = 0.3268167972564697s / 1 inps = 3.0598182480053167 ips
9%|▉ | 119/1261 [20:04<2:47:27, 8.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0208132266998291s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7017061710357666s
Forwarding 1 inputs ...
Total time = 0.8444499969482422s / 1 inps = 1.1842027397879094 ips
Post processing 1 inputs ...
Total time = 0.31151819229125977s / 1 inps = 3.210085397083427 ips
10%|▉ | 120/1261 [20:12<2:43:27, 8.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023901939392089844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7289230823516846s
Forwarding 1 inputs ...
Total time = 0.9417660236358643s / 1 inps = 1.0618348665195125 ips
Post processing 1 inputs ...
Total time = 0.33481884002685547s / 1 inps = 2.9866897571229596 ips
10%|▉ | 121/1261 [20:20<2:39:39, 8.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026453018188476562s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7250311374664307s
Forwarding 1 inputs ...
Total time = 1.7830588817596436s / 1 inps = 0.5608339748225993 ips
Post processing 1 inputs ...
Total time = 0.5658318996429443s / 1 inps = 1.7673093380401985 ips
10%|▉ | 122/1261 [20:30<2:52:37, 9.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06182503700256348s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3272461891174316s
Forwarding 1 inputs ...
Total time = 1.1934881210327148s / 1 inps = 0.8378801450782005 ips
Post processing 1 inputs ...
Total time = 0.43855714797973633s / 1 inps = 2.280204540289936 ips
10%|▉ | 123/1261 [20:40<2:58:25, 9.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02471613883972168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9254791736602783s
Forwarding 1 inputs ...
Total time = 1.083568811416626s / 1 inps = 0.9228763226330126 ips
Post processing 1 inputs ...
Total time = 0.4197559356689453s / 1 inps = 2.382336770071749 ips
10%|▉ | 124/1261 [20:50<2:56:48, 9.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035490989685058594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.514648199081421s
Forwarding 1 inputs ...
Total time = 1.2675468921661377s / 1 inps = 0.788925448186835 ips
Post processing 1 inputs ...
Total time = 0.45250988006591797s / 1 inps = 2.209896499617485 ips
10%|▉ | 125/1261 [21:00<3:02:45, 9.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0683448314666748s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.742074966430664s
Forwarding 1 inputs ...
Total time = 1.1014771461486816s / 1 inps = 0.907871764290801 ips
Post processing 1 inputs ...
Total time = 0.44141483306884766s / 1 inps = 2.265442674519344 ips
10%|▉ | 126/1261 [21:11<3:10:42, 10.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04735398292541504s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9874069690704346s
Forwarding 1 inputs ...
Total time = 1.0707449913024902s / 1 inps = 0.9339291877364435 ips
Post processing 1 inputs ...
Total time = 0.44326186180114746s / 1 inps = 2.256002796939503 ips
10%|█ | 127/1261 [21:20<3:06:00, 9.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10799503326416016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.956937074661255s
Forwarding 1 inputs ...
Total time = 0.9450509548187256s / 1 inps = 1.0581440026075783 ips
Post processing 1 inputs ...
Total time = 0.37197279930114746s / 1 inps = 2.6883686169493393 ips
10%|█ | 128/1261 [21:30<3:05:23, 9.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09652209281921387s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6723690032958984s
Forwarding 1 inputs ...
Total time = 0.8358800411224365s / 1 inps = 1.196343913963037 ips
Post processing 1 inputs ...
Total time = 0.3324589729309082s / 1 inps = 3.0078899395740493 ips
10%|█ | 129/1261 [21:39<2:57:09, 9.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05442214012145996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.790148973464966s
Forwarding 1 inputs ...
Total time = 0.8653731346130371s / 1 inps = 1.1555708861324463 ips
Post processing 1 inputs ...
Total time = 0.3326890468597412s / 1 inps = 3.0058098078040763 ips
10%|█ | 130/1261 [21:47<2:51:27, 9.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04182791709899902s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.689652919769287s
Forwarding 1 inputs ...
Total time = 0.8444070816040039s / 1 inps = 1.184262924584239 ips
Post processing 1 inputs ...
Total time = 0.3570570945739746s / 1 inps = 2.8006725400405714 ips
10%|█ | 131/1261 [21:55<2:47:05, 8.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026814937591552734s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7760322093963623s
Forwarding 1 inputs ...
Total time = 0.8685858249664307s / 1 inps = 1.1512967069646207 ips
Post processing 1 inputs ...
Total time = 0.3545057773590088s / 1 inps = 2.8208284994670136 ips
10%|█ | 132/1261 [22:04<2:44:16, 8.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024225950241088867s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0051019191741943s
Forwarding 1 inputs ...
Total time = 0.8691160678863525s / 1 inps = 1.1505943071929976 ips
Post processing 1 inputs ...
Total time = 0.32541489601135254s / 1 inps = 3.073000075464012 ips
11%|█ | 133/1261 [22:12<2:43:06, 8.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017729997634887695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7440521717071533s
Forwarding 1 inputs ...
Total time = 0.9118561744689941s / 1 inps = 1.0966641757756754 ips
Post processing 1 inputs ...
Total time = 0.3948659896850586s / 1 inps = 2.5325047639519185 ips
11%|█ | 134/1261 [22:21<2:41:03, 8.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03972601890563965s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7789101600646973s
Forwarding 1 inputs ...
Total time = 0.8890368938446045s / 1 inps = 1.12481271241235 ips
Post processing 1 inputs ...
Total time = 0.33981895446777344s / 1 inps = 2.9427434428023775 ips
11%|█ | 135/1261 [22:29<2:40:07, 8.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02994680404663086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7562599182128906s
Forwarding 1 inputs ...
Total time = 0.8319711685180664s / 1 inps = 1.2019647288754391 ips
Post processing 1 inputs ...
Total time = 0.8169529438018799s / 1 inps = 1.2240607094776699 ips
11%|█ | 136/1261 [22:38<2:40:17, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08572077751159668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8054299354553223s
Forwarding 1 inputs ...
Total time = 0.8347361087799072s / 1 inps = 1.1979833979647183 ips
Post processing 1 inputs ...
Total time = 0.40796613693237305s / 1 inps = 2.451183834813638 ips
11%|█ | 137/1261 [22:46<2:40:40, 8.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0327908992767334s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.658608913421631s
Forwarding 1 inputs ...
Total time = 1.3980982303619385s / 1 inps = 0.7152573247597351 ips
Post processing 1 inputs ...
Total time = 0.46797800064086914s / 1 inps = 2.1368525841611294 ips
11%|█ | 138/1261 [22:56<2:48:22, 9.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03178691864013672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0046238899230957s
Forwarding 1 inputs ...
Total time = 1.4835529327392578s / 1 inps = 0.6740575128341276 ips
Post processing 1 inputs ...
Total time = 0.3513150215148926s / 1 inps = 2.846448169759257 ips
11%|█ | 139/1261 [23:06<2:53:54, 9.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08568501472473145s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2080440521240234s
Forwarding 1 inputs ...
Total time = 1.0362160205841064s / 1 inps = 0.9650497387951098 ips
Post processing 1 inputs ...
Total time = 0.4066441059112549s / 1 inps = 2.4591528205212394 ips
11%|█ | 140/1261 [23:16<2:53:44, 9.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06076407432556152s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.162461996078491s
Forwarding 1 inputs ...
Total time = 1.011094093322754s / 1 inps = 0.9890276351172269 ips
Post processing 1 inputs ...
Total time = 0.4021730422973633s / 1 inps = 2.486491869986175 ips
11%|█ | 141/1261 [23:25<2:55:24, 9.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0472109317779541s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0194880962371826s
Forwarding 1 inputs ...
Total time = 0.9261159896850586s / 1 inps = 1.0797783551281377 ips
Post processing 1 inputs ...
Total time = 0.3874220848083496s / 1 inps = 2.581164159742419 ips
11%|█▏ | 142/1261 [23:34<2:52:27, 9.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025619983673095703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9643959999084473s
Forwarding 1 inputs ...
Total time = 0.9679908752441406s / 1 inps = 1.0330675893486974 ips
Post processing 1 inputs ...
Total time = 0.40485382080078125s / 1 inps = 2.4700273249787994 ips
11%|█▏ | 143/1261 [23:43<2:53:01, 9.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023187875747680664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.712337017059326s
Forwarding 1 inputs ...
Total time = 1.16621994972229s / 1 inps = 0.8574711830629619 ips
Post processing 1 inputs ...
Total time = 0.5297729969024658s / 1 inps = 1.887600926900594 ips
11%|█▏ | 144/1261 [23:56<3:13:05, 10.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10212397575378418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.450313091278076s
Forwarding 1 inputs ...
Total time = 1.5372650623321533s / 1 inps = 0.6505059046114796 ips
Post processing 1 inputs ...
Total time = 0.6105129718780518s / 1 inps = 1.6379668345519565 ips
11%|█▏ | 145/1261 [24:10<3:31:34, 11.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10402798652648926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.777554988861084s
Forwarding 1 inputs ...
Total time = 1.7579071521759033s / 1 inps = 0.5688582578222174 ips
Post processing 1 inputs ...
Total time = 0.5363879203796387s / 1 inps = 1.8643223719360256 ips
12%|█▏ | 146/1261 [24:30<4:20:26, 14.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10118699073791504s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.519726991653442s
Forwarding 1 inputs ...
Total time = 1.8468151092529297s / 1 inps = 0.5414727197052867 ips
Post processing 1 inputs ...
Total time = 0.8422760963439941s / 1 inps = 1.1872591473753398 ips
12%|█▏ | 147/1261 [24:49<4:46:16, 15.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07125401496887207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.18253207206726s
Forwarding 1 inputs ...
Total time = 1.991858959197998s / 1 inps = 0.5020435786290008 ips
Post processing 1 inputs ...
Total time = 0.6767580509185791s / 1 inps = 1.47763295707037 ips
12%|█▏ | 148/1261 [25:09<5:13:17, 16.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.21855401992797852s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.121004104614258s
Forwarding 1 inputs ...
Total time = 1.3576600551605225s / 1 inps = 0.7365614066635888 ips
Post processing 1 inputs ...
Total time = 0.515733003616333s / 1 inps = 1.9389877959874091 ips
12%|█▏ | 149/1261 [25:26<5:09:41, 16.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05972099304199219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.338842153549194s
Forwarding 1 inputs ...
Total time = 1.1519379615783691s / 1 inps = 0.868102305292391 ips
Post processing 1 inputs ...
Total time = 0.5618679523468018s / 1 inps = 1.7797776075734784 ips
12%|█▏ | 150/1261 [25:38<4:46:00, 15.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.18439412117004395s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.815571069717407s
Forwarding 1 inputs ...
Total time = 1.634843111038208s / 1 inps = 0.6116794897615279 ips
Post processing 1 inputs ...
Total time = 0.8502140045166016s / 1 inps = 1.176174462767831 ips
12%|█▏ | 151/1261 [25:59<5:14:44, 17.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.18667316436767578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 10.915674924850464s
Forwarding 1 inputs ...
Total time = 1.827808141708374s / 1 inps = 0.5471033732595932 ips
Post processing 1 inputs ...
Total time = 0.8098709583282471s / 1 inps = 1.234764612456559 ips
12%|█▏ | 152/1261 [26:27<6:19:45, 20.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1473708152770996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.359344959259033s
Forwarding 1 inputs ...
Total time = 1.452279806137085s / 1 inps = 0.6885725435099846 ips
Post processing 1 inputs ...
Total time = 0.773690938949585s / 1 inps = 1.2925057663951287 ips
12%|█▏ | 153/1261 [26:48<6:20:10, 20.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.032788991928100586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.206920146942139s
Forwarding 1 inputs ...
Total time = 1.6731359958648682s / 1 inps = 0.5976800466139548 ips
Post processing 1 inputs ...
Total time = 0.7396008968353271s / 1 inps = 1.352080567071907 ips
12%|█▏ | 154/1261 [27:09<6:18:39, 20.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.032629966735839844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.5638909339904785s
Forwarding 1 inputs ...
Total time = 1.6036770343780518s / 1 inps = 0.6235669518007573 ips
Post processing 1 inputs ...
Total time = 0.8279211521148682s / 1 inps = 1.2078444879027044 ips
12%|█▏ | 155/1261 [27:27<6:04:25, 19.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09308481216430664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.266430854797363s
Forwarding 1 inputs ...
Total time = 1.4970049858093262s / 1 inps = 0.6680004472125186 ips
Post processing 1 inputs ...
Total time = 0.7636308670043945s / 1 inps = 1.3095332355053233 ips
12%|█▏ | 156/1261 [27:44<5:52:24, 19.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05903506278991699s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.50533390045166s
Forwarding 1 inputs ...
Total time = 1.4914910793304443s / 1 inps = 0.6704699839364222 ips
Post processing 1 inputs ...
Total time = 0.8905029296875s / 1 inps = 1.122960932145305 ips
12%|█▏ | 157/1261 [28:02<5:47:14, 18.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06263613700866699s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.856394052505493s
Forwarding 1 inputs ...
Total time = 1.8618109226226807s / 1 inps = 0.5371114691879282 ips
Post processing 1 inputs ...
Total time = 0.8442299365997314s / 1 inps = 1.184511418805707 ips
13%|█▎ | 158/1261 [28:23<5:54:36, 19.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03337287902832031s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.439664840698242s
Forwarding 1 inputs ...
Total time = 1.2017590999603271s / 1 inps = 0.8321135242770471 ips
Post processing 1 inputs ...
Total time = 0.6551039218902588s / 1 inps = 1.5264753676249816 ips
13%|█▎ | 159/1261 [28:40<5:42:55, 18.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.3263399600982666s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.0502259731292725s
Forwarding 1 inputs ...
Total time = 1.1333510875701904s / 1 inps = 0.8823391188902603 ips
Post processing 1 inputs ...
Total time = 0.5716450214385986s / 1 inps = 1.749337372839189 ips
13%|█▎ | 160/1261 [28:57<5:35:24, 18.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08988809585571289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.330603122711182s
Forwarding 1 inputs ...
Total time = 2.1330699920654297s / 1 inps = 0.46880787021513076 ips
Post processing 1 inputs ...
Total time = 0.7160961627960205s / 1 inps = 1.3964604922549337 ips
13%|█▎ | 161/1261 [29:14<5:24:09, 17.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09234189987182617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.303446054458618s
Forwarding 1 inputs ...
Total time = 1.658520221710205s / 1 inps = 0.6029471253409481 ips
Post processing 1 inputs ...
Total time = 0.6842360496520996s / 1 inps = 1.4614839433094045 ips
13%|█▎ | 162/1261 [29:33<5:33:52, 18.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.18688488006591797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.651734828948975s
Forwarding 1 inputs ...
Total time = 1.2408480644226074s / 1 inps = 0.8059004391204986 ips
Post processing 1 inputs ...
Total time = 0.5878560543060303s / 1 inps = 1.7010967101130048 ips
13%|█▎ | 163/1261 [29:50<5:23:24, 17.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04726600646972656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.682283878326416s
Forwarding 1 inputs ...
Total time = 1.2408311367034912s / 1 inps = 0.805911433409621 ips
Post processing 1 inputs ...
Total time = 0.5421018600463867s / 1 inps = 1.8446717742573908 ips
13%|█▎ | 164/1261 [30:04<5:05:01, 16.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07198190689086914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.549546957015991s
Forwarding 1 inputs ...
Total time = 1.207258939743042s / 1 inps = 0.8283227127834267 ips
Post processing 1 inputs ...
Total time = 0.5543859004974365s / 1 inps = 1.8037976779400868 ips
13%|█▎ | 165/1261 [30:18<4:50:34, 15.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027153968811035156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.572456121444702s
Forwarding 1 inputs ...
Total time = 1.4713318347930908s / 1 inps = 0.6796563333659039 ips
Post processing 1 inputs ...
Total time = 0.5703659057617188s / 1 inps = 1.7532604769994249 ips
13%|█▎ | 166/1261 [30:32<4:42:36, 15.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06519198417663574s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.726706027984619s
Forwarding 1 inputs ...
Total time = 1.2855620384216309s / 1 inps = 0.777869888899151 ips
Post processing 1 inputs ...
Total time = 0.5993640422821045s / 1 inps = 1.66843509028746 ips
13%|█▎ | 167/1261 [30:47<4:37:55, 15.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.054457902908325195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.012923955917358s
Forwarding 1 inputs ...
Total time = 1.1729331016540527s / 1 inps = 0.8525635422768911 ips
Post processing 1 inputs ...
Total time = 0.7299418449401855s / 1 inps = 1.369972151797852 ips
13%|█▎ | 168/1261 [31:01<4:29:40, 14.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018790006637573242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.657989978790283s
Forwarding 1 inputs ...
Total time = 1.1641209125518799s / 1 inps = 0.8590172972736062 ips
Post processing 1 inputs ...
Total time = 0.5191380977630615s / 1 inps = 1.9262697234299444 ips
13%|█▎ | 169/1261 [31:14<4:22:09, 14.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03158688545227051s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.62261700630188s
Forwarding 1 inputs ...
Total time = 1.3006000518798828s / 1 inps = 0.7688758727593494 ips
Post processing 1 inputs ...
Total time = 0.5686960220336914s / 1 inps = 1.7584086423251906 ips
13%|█▎ | 170/1261 [31:28<4:17:39, 14.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03985285758972168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.47683310508728s
Forwarding 1 inputs ...
Total time = 1.2865149974822998s / 1 inps = 0.7772936980579259 ips
Post processing 1 inputs ...
Total time = 0.6027541160583496s / 1 inps = 1.6590513002870892 ips
14%|█▎ | 171/1261 [31:42<4:15:00, 14.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02781391143798828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.314259052276611s
Forwarding 1 inputs ...
Total time = 1.322026014328003s / 1 inps = 0.7564147673057012 ips
Post processing 1 inputs ...
Total time = 0.5098190307617188s / 1 inps = 1.961480328629364 ips
14%|█▎ | 172/1261 [31:55<4:10:27, 13.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.039608001708984375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.314406156539917s
Forwarding 1 inputs ...
Total time = 1.3130438327789307s / 1 inps = 0.7615891983465597 ips
Post processing 1 inputs ...
Total time = 0.5643370151519775s / 1 inps = 1.771990801862779 ips
14%|█▎ | 173/1261 [32:08<4:07:03, 13.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06476497650146484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.165313005447388s
Forwarding 1 inputs ...
Total time = 1.2609000205993652s / 1 inps = 0.7930842919049623 ips
Post processing 1 inputs ...
Total time = 0.5743808746337891s / 1 inps = 1.7410050441487543 ips
14%|█▍ | 174/1261 [32:21<4:03:10, 13.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04715394973754883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.308284044265747s
Forwarding 1 inputs ...
Total time = 1.470592975616455s / 1 inps = 0.6799978080820166 ips
Post processing 1 inputs ...
Total time = 0.5807771682739258s / 1 inps = 1.7218307719843873 ips
14%|█▍ | 175/1261 [32:35<4:03:23, 13.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05634808540344238s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.964484930038452s
Forwarding 1 inputs ...
Total time = 1.3206379413604736s / 1 inps = 0.757209806474162 ips
Post processing 1 inputs ...
Total time = 0.681643009185791s / 1 inps = 1.467043579298906 ips
14%|█▍ | 176/1261 [32:49<4:07:03, 13.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10301399230957031s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.695034980773926s
Forwarding 1 inputs ...
Total time = 1.5095789432525635s / 1 inps = 0.6624363730494172 ips
Post processing 1 inputs ...
Total time = 0.7276089191436768s / 1 inps = 1.3743646809290084 ips
14%|█▍ | 177/1261 [33:04<4:14:09, 14.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06591200828552246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.0419230461120605s
Forwarding 1 inputs ...
Total time = 1.3998770713806152s / 1 inps = 0.714348438476644 ips
Post processing 1 inputs ...
Total time = 0.7034170627593994s / 1 inps = 1.421631707478278 ips
14%|█▍ | 178/1261 [33:22<4:38:36, 15.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034178972244262695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.545835971832275s
Forwarding 1 inputs ...
Total time = 1.843022108078003s / 1 inps = 0.5425870886827564 ips
Post processing 1 inputs ...
Total time = 0.6817398071289062s / 1 inps = 1.466835278713475 ips
14%|█▍ | 179/1261 [33:42<5:02:36, 16.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03229403495788574s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.6709511280059814s
Forwarding 1 inputs ...
Total time = 1.66611909866333s / 1 inps = 0.6001971892659207 ips
Post processing 1 inputs ...
Total time = 0.7355170249938965s / 1 inps = 1.3595878355205961 ips
14%|█▍ | 180/1261 [34:00<5:08:50, 17.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05952596664428711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.775166034698486s
Forwarding 1 inputs ...
Total time = 1.4015870094299316s / 1 inps = 0.7134769324144425 ips
Post processing 1 inputs ...
Total time = 0.8023660182952881s / 1 inps = 1.2463139978492688 ips
14%|█▍ | 181/1261 [34:17<5:05:15, 16.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.043419837951660156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.1184351444244385s
Forwarding 1 inputs ...
Total time = 1.7642920017242432s / 1 inps = 0.5667995995122688 ips
Post processing 1 inputs ...
Total time = 0.7089769840240479s / 1 inps = 1.4104830234743995 ips
14%|█▍ | 182/1261 [34:35<5:11:45, 17.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1037747859954834s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 9.273643016815186s
Forwarding 1 inputs ...
Total time = 1.5446219444274902s / 1 inps = 0.6474076090966371 ips
Post processing 1 inputs ...
Total time = 0.6691238880157471s / 1 inps = 1.494491555166935 ips
15%|█▍ | 183/1261 [34:58<5:43:42, 19.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10114717483520508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.607275009155273s
Forwarding 1 inputs ...
Total time = 1.6562788486480713s / 1 inps = 0.6037630685293389 ips
Post processing 1 inputs ...
Total time = 0.8920009136199951s / 1 inps = 1.1210750849365319 ips
15%|█▍ | 184/1261 [35:19<5:49:34, 19.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1400461196899414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.673398017883301s
Forwarding 1 inputs ...
Total time = 1.4524540901184082s / 1 inps = 0.6884899197870531 ips
Post processing 1 inputs ...
Total time = 0.8737330436706543s / 1 inps = 1.1445143425031559 ips
15%|█▍ | 185/1261 [35:39<5:54:09, 19.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04246115684509277s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.011789798736572s
Forwarding 1 inputs ...
Total time = 2.164708137512207s / 1 inps = 0.46195604048001176 ips
Post processing 1 inputs ...
Total time = 0.8954131603240967s / 1 inps = 1.1168028841993431 ips
15%|█▍ | 186/1261 [36:00<5:59:05, 20.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06779885292053223s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.675185918807983s
Forwarding 1 inputs ...
Total time = 3.4374489784240723s / 1 inps = 0.2909134088321679 ips
Post processing 1 inputs ...
Total time = 1.219088077545166s / 1 inps = 0.8202852758708494 ips
15%|█▍ | 187/1261 [36:22<6:10:39, 20.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07397794723510742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 9.38081979751587s
Forwarding 1 inputs ...
Total time = 1.8512709140777588s / 1 inps = 0.5401694546139221 ips
Post processing 1 inputs ...
Total time = 0.7990620136260986s / 1 inps = 1.2514673241217613 ips
15%|█▍ | 188/1261 [36:49<6:42:43, 22.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.16619586944580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.033124208450317s
Forwarding 1 inputs ...
Total time = 1.9836211204528809s / 1 inps = 0.504128530236505 ips
Post processing 1 inputs ...
Total time = 1.0049700736999512s / 1 inps = 0.9950545057708504 ips
15%|█▍ | 189/1261 [37:11<6:42:57, 22.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11376094818115234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.786994934082031s
Forwarding 1 inputs ...
Total time = 1.5553510189056396s / 1 inps = 0.642941681874237 ips
Post processing 1 inputs ...
Total time = 0.725822925567627s / 1 inps = 1.3777465064470842 ips
15%|█▌ | 190/1261 [37:30<6:21:32, 21.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04633808135986328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.164218902587891s
Forwarding 1 inputs ...
Total time = 1.997338056564331s / 1 inps = 0.5006663727822439 ips
Post processing 1 inputs ...
Total time = 1.15061616897583s / 1 inps = 0.8690995546239417 ips
15%|█▌ | 191/1261 [37:51<6:19:36, 21.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05468297004699707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.506114959716797s
Forwarding 1 inputs ...
Total time = 1.515963077545166s / 1 inps = 0.6596466726744579 ips
Post processing 1 inputs ...
Total time = 0.740684986114502s / 1 inps = 1.3501016204551644 ips
15%|█▌ | 192/1261 [38:13<6:21:24, 21.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03707098960876465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.671989917755127s
Forwarding 1 inputs ...
Total time = 2.1371891498565674s / 1 inps = 0.467904303213926 ips
Post processing 1 inputs ...
Total time = 0.8932490348815918s / 1 inps = 1.1195086263178096 ips
15%|█▌ | 193/1261 [38:38<6:41:02, 22.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03806614875793457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 10.542297124862671s
Forwarding 1 inputs ...
Total time = 1.848503828048706s / 1 inps = 0.5409780519933287 ips
Post processing 1 inputs ...
Total time = 1.320789098739624s / 1 inps = 0.7571231477866223 ips
15%|█▌ | 194/1261 [39:05<7:04:13, 23.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10105681419372559s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.91211199760437s
Forwarding 1 inputs ...
Total time = 1.271963119506836s / 1 inps = 0.7861863167760075 ips
Post processing 1 inputs ...
Total time = 0.6336381435394287s / 1 inps = 1.5781878193350494 ips
15%|█▌ | 195/1261 [39:21<6:21:52, 21.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03936290740966797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.2113001346588135s
Forwarding 1 inputs ...
Total time = 1.3477060794830322s / 1 inps = 0.7420015500587419 ips
Post processing 1 inputs ...
Total time = 0.6116828918457031s / 1 inps = 1.6348340182975885 ips
16%|█▌ | 196/1261 [39:36<5:48:04, 19.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04457402229309082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.254702091217041s
Forwarding 1 inputs ...
Total time = 1.4435830116271973s / 1 inps = 0.6927208147682526 ips
Post processing 1 inputs ...
Total time = 0.7057249546051025s / 1 inps = 1.416982626835922 ips
16%|█▌ | 197/1261 [39:54<5:40:51, 19.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03149080276489258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.347860097885132s
Forwarding 1 inputs ...
Total time = 1.5144500732421875s / 1 inps = 0.660305689615218 ips
Post processing 1 inputs ...
Total time = 0.7164449691772461s / 1 inps = 1.3957806154300783 ips
16%|█▌ | 198/1261 [40:13<5:36:42, 19.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021118879318237305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.591069936752319s
Forwarding 1 inputs ...
Total time = 1.5101830959320068s / 1 inps = 0.662171363653658 ips
Post processing 1 inputs ...
Total time = 0.8780288696289062s / 1 inps = 1.1389147152104966 ips
16%|█▌ | 199/1261 [40:30<5:25:36, 18.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08447408676147461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.827799081802368s
Forwarding 1 inputs ...
Total time = 1.3255460262298584s / 1 inps = 0.7544060939507455 ips
Post processing 1 inputs ...
Total time = 0.5872268676757812s / 1 inps = 1.702919357143785 ips
16%|█▌ | 200/1261 [40:46<5:14:14, 17.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07029199600219727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.168688058853149s
Forwarding 1 inputs ...
Total time = 1.2745771408081055s / 1 inps = 0.784573932783685 ips
Post processing 1 inputs ...
Total time = 0.6071817874908447s / 1 inps = 1.6469532199449877 ips
16%|█▌ | 201/1261 [41:01<4:57:36, 16.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.043530941009521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.74495005607605s
Forwarding 1 inputs ...
Total time = 1.2494101524353027s / 1 inps = 0.8003776806606205 ips
Post processing 1 inputs ...
Total time = 0.7049670219421387s / 1 inps = 1.418506070319523 ips
16%|█▌ | 202/1261 [41:17<4:50:39, 16.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04914379119873047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.237221002578735s
Forwarding 1 inputs ...
Total time = 1.2210230827331543s / 1 inps = 0.8189853362653773 ips
Post processing 1 inputs ...
Total time = 0.644791841506958s / 1 inps = 1.5508881093515028 ips
16%|█▌ | 203/1261 [41:31<4:41:33, 15.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03143501281738281s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.253376007080078s
Forwarding 1 inputs ...
Total time = 1.2438468933105469s / 1 inps = 0.8039574688637612 ips
Post processing 1 inputs ...
Total time = 0.6626617908477783s / 1 inps = 1.5090654294714156 ips
16%|█▌ | 204/1261 [41:46<4:36:37, 15.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.046898841857910156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.26963996887207s
Forwarding 1 inputs ...
Total time = 1.2969319820404053s / 1 inps = 0.7710504589660474 ips
Post processing 1 inputs ...
Total time = 0.7138650417327881s / 1 inps = 1.4008250040829386 ips
16%|█▋ | 205/1261 [42:02<4:33:02, 15.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03775787353515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.310988903045654s
Forwarding 1 inputs ...
Total time = 2.0144200325012207s / 1 inps = 0.4964207979794274 ips
Post processing 1 inputs ...
Total time = 0.9981920719146729s / 1 inps = 1.0018112026093928 ips
16%|█▋ | 206/1261 [42:20<4:46:02, 16.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04683089256286621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.520831823348999s
Forwarding 1 inputs ...
Total time = 1.5601308345794678s / 1 inps = 0.6409718837904702 ips
Post processing 1 inputs ...
Total time = 0.7515389919281006s / 1 inps = 1.3306029503997705 ips
16%|█▋ | 207/1261 [42:37<4:51:28, 16.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05992388725280762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.275404930114746s
Forwarding 1 inputs ...
Total time = 1.7760100364685059s / 1 inps = 0.5630598811189393 ips
Post processing 1 inputs ...
Total time = 0.6486921310424805s / 1 inps = 1.5415633274184324 ips
16%|█▋ | 208/1261 [42:56<5:05:19, 17.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09474897384643555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.217604875564575s
Forwarding 1 inputs ...
Total time = 1.8930749893188477s / 1 inps = 0.5282410922135803 ips
Post processing 1 inputs ...
Total time = 0.719789981842041s / 1 inps = 1.389294134715328 ips
17%|█▋ | 209/1261 [43:18<5:30:30, 18.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1043848991394043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 9.871664047241211s
Forwarding 1 inputs ...
Total time = 2.6817679405212402s / 1 inps = 0.3728883416384028 ips
Post processing 1 inputs ...
Total time = 1.006309986114502s / 1 inps = 0.9937295801476982 ips
17%|█▋ | 210/1261 [43:43<6:00:45, 20.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.18444395065307617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.26240086555481s
Forwarding 1 inputs ...
Total time = 1.3096530437469482s / 1 inps = 0.7635610093639583 ips
Post processing 1 inputs ...
Total time = 0.7514381408691406s / 1 inps = 1.3307815315886997 ips
17%|█▋ | 211/1261 [44:03<5:57:55, 20.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06111907958984375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.683523178100586s
Forwarding 1 inputs ...
Total time = 1.1727039813995361s / 1 inps = 0.8527301142156722 ips
Post processing 1 inputs ...
Total time = 0.42331409454345703s / 1 inps = 2.3623120819506305 ips
17%|█▋ | 212/1261 [44:15<5:10:20, 17.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027515172958374023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9257490634918213s
Forwarding 1 inputs ...
Total time = 1.218308925628662s / 1 inps = 0.8208098774980147 ips
Post processing 1 inputs ...
Total time = 1.3319091796875s / 1 inps = 0.7508019429933095 ips
17%|█▋ | 213/1261 [44:27<4:43:00, 16.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03916788101196289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.565429925918579s
Forwarding 1 inputs ...
Total time = 1.2532060146331787s / 1 inps = 0.7979533997789712 ips
Post processing 1 inputs ...
Total time = 0.4831869602203369s / 1 inps = 2.069592274476928 ips
17%|█▋ | 214/1261 [44:38<4:14:16, 14.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036993980407714844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.754931211471558s
Forwarding 1 inputs ...
Total time = 1.6477010250091553s / 1 inps = 0.6069062195275648 ips
Post processing 1 inputs ...
Total time = 0.5150859355926514s / 1 inps = 1.9414236167202132 ips
17%|█▋ | 215/1261 [44:52<4:13:20, 14.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13903594017028809s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.101078987121582s
Forwarding 1 inputs ...
Total time = 1.1141369342803955s / 1 inps = 0.8975557395428104 ips
Post processing 1 inputs ...
Total time = 0.43198680877685547s / 1 inps = 2.3148855003962727 ips
17%|█▋ | 216/1261 [45:05<4:00:44, 13.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0610959529876709s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7000701427459717s
Forwarding 1 inputs ...
Total time = 1.114074945449829s / 1 inps = 0.8976056809142502 ips
Post processing 1 inputs ...
Total time = 0.47937703132629395s / 1 inps = 2.0860407041891365 ips
17%|█▋ | 217/1261 [45:16<3:45:38, 12.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026206016540527344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.025913953781128s
Forwarding 1 inputs ...
Total time = 1.2674529552459717s / 1 inps = 0.7889839191750768 ips
Post processing 1 inputs ...
Total time = 0.4978458881378174s / 1 inps = 2.008653729652122 ips
17%|█▋ | 218/1261 [45:27<3:37:39, 12.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031954050064086914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.114345073699951s
Forwarding 1 inputs ...
Total time = 1.128925085067749s / 1 inps = 0.885798369818302 ips
Post processing 1 inputs ...
Total time = 0.40743184089660645s / 1 inps = 2.4543982566491875 ips
17%|█▋ | 219/1261 [45:38<3:30:24, 12.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09182310104370117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.840813875198364s
Forwarding 1 inputs ...
Total time = 1.4607019424438477s / 1 inps = 0.6846023620170835 ips
Post processing 1 inputs ...
Total time = 0.5371179580688477s / 1 inps = 1.8617884302274998 ips
17%|█▋ | 220/1261 [45:55<3:52:23, 13.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0472111701965332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.868208885192871s
Forwarding 1 inputs ...
Total time = 1.2628910541534424s / 1 inps = 0.791833940632617 ips
Post processing 1 inputs ...
Total time = 0.46537303924560547s / 1 inps = 2.1488137809209005 ips
18%|█▊ | 221/1261 [46:09<3:54:55, 13.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05935192108154297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.874401092529297s
Forwarding 1 inputs ...
Total time = 1.2210829257965088s / 1 inps = 0.8189451992768656 ips
Post processing 1 inputs ...
Total time = 0.46397900581359863s / 1 inps = 2.15526993133337 ips
18%|█▊ | 222/1261 [46:21<3:46:42, 13.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02934098243713379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.588778018951416s
Forwarding 1 inputs ...
Total time = 1.2050769329071045s / 1 inps = 0.8298225388711234 ips
Post processing 1 inputs ...
Total time = 0.3925309181213379s / 1 inps = 2.54757002272846 ips
18%|█▊ | 223/1261 [46:31<3:35:01, 12.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0308840274810791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9511449337005615s
Forwarding 1 inputs ...
Total time = 1.1332249641418457s / 1 inps = 0.8824373197225384 ips
Post processing 1 inputs ...
Total time = 0.5605108737945557s / 1 inps = 1.7840867086666556 ips
18%|█▊ | 224/1261 [46:43<3:32:27, 12.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02524590492248535s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.323923110961914s
Forwarding 1 inputs ...
Total time = 1.5491249561309814s / 1 inps = 0.6455257182723019 ips
Post processing 1 inputs ...
Total time = 0.6013720035552979s / 1 inps = 1.6628642405832368 ips
18%|█▊ | 225/1261 [46:58<3:43:11, 12.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.039116859436035156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.722880125045776s
Forwarding 1 inputs ...
Total time = 1.2845301628112793s / 1 inps = 0.7784947593690084 ips
Post processing 1 inputs ...
Total time = 0.4808390140533447s / 1 inps = 2.079698133415312 ips
18%|█▊ | 226/1261 [47:13<3:54:20, 13.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06288313865661621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.866081953048706s
Forwarding 1 inputs ...
Total time = 1.1245288848876953s / 1 inps = 0.8892612839374671 ips
Post processing 1 inputs ...
Total time = 0.41929101943969727s / 1 inps = 2.38497834114432 ips
18%|█▊ | 227/1261 [47:25<3:46:56, 13.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05303192138671875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4856882095336914s
Forwarding 1 inputs ...
Total time = 1.0718519687652588s / 1 inps = 0.9329646529006892 ips
Post processing 1 inputs ...
Total time = 0.43831300735473633s / 1 inps = 2.2814746156749988 ips
18%|█▊ | 228/1261 [47:35<3:31:34, 12.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02519512176513672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4220521450042725s
Forwarding 1 inputs ...
Total time = 1.1404109001159668s / 1 inps = 0.8768769220798498 ips
Post processing 1 inputs ...
Total time = 0.5149431228637695s / 1 inps = 1.9419620451258155 ips
18%|█▊ | 229/1261 [47:46<3:20:33, 11.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021366119384765625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.410512924194336s
Forwarding 1 inputs ...
Total time = 1.0844829082489014s / 1 inps = 0.9220984419336634 ips
Post processing 1 inputs ...
Total time = 0.4308459758758545s / 1 inps = 2.321015063369522 ips
18%|█▊ | 230/1261 [47:56<3:12:27, 11.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030086994171142578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.593488931655884s
Forwarding 1 inputs ...
Total time = 1.090752124786377s / 1 inps = 0.9167985807919918 ips
Post processing 1 inputs ...
Total time = 0.4317460060119629s / 1 inps = 2.3161766086431195 ips
18%|█▊ | 231/1261 [48:06<3:07:25, 10.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03242206573486328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3560681343078613s
Forwarding 1 inputs ...
Total time = 1.0453171730041504s / 1 inps = 0.9566474423510016 ips
Post processing 1 inputs ...
Total time = 0.4209768772125244s / 1 inps = 2.3754273788656657 ips
18%|█▊ | 232/1261 [48:16<3:01:50, 10.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02913689613342285s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.486948013305664s
Forwarding 1 inputs ...
Total time = 1.305191993713379s / 1 inps = 0.7661708046146664 ips
Post processing 1 inputs ...
Total time = 0.45878100395202637s / 1 inps = 2.17968920113477 ips
18%|█▊ | 233/1261 [48:26<3:00:37, 10.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05696988105773926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4970829486846924s
Forwarding 1 inputs ...
Total time = 1.06718111038208s / 1 inps = 0.9370480701649344 ips
Post processing 1 inputs ...
Total time = 0.4382140636444092s / 1 inps = 2.281989746480283 ips
19%|█▊ | 234/1261 [48:37<2:59:31, 10.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037377119064331055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5228450298309326s
Forwarding 1 inputs ...
Total time = 1.0536057949066162s / 1 inps = 0.9491215830761757 ips
Post processing 1 inputs ...
Total time = 0.43151378631591797s / 1 inps = 2.317423062047627 ips
19%|█▊ | 235/1261 [48:47<3:01:19, 10.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0368649959564209s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4215080738067627s
Forwarding 1 inputs ...
Total time = 1.0795211791992188s / 1 inps = 0.9263366196685395 ips
Post processing 1 inputs ...
Total time = 0.41257500648498535s / 1 inps = 2.4238016949201517 ips
19%|█▊ | 236/1261 [48:58<2:59:34, 10.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05936598777770996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5184669494628906s
Forwarding 1 inputs ...
Total time = 1.0310540199279785s / 1 inps = 0.9698812871801347 ips
Post processing 1 inputs ...
Total time = 0.43472909927368164s / 1 inps = 2.3002830996837753 ips
19%|█▉ | 237/1261 [49:08<2:58:42, 10.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02697896957397461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8078179359436035s
Forwarding 1 inputs ...
Total time = 1.22776198387146s / 1 inps = 0.8144901154592962 ips
Post processing 1 inputs ...
Total time = 0.5027170181274414s / 1 inps = 1.9891906658041458 ips
19%|█▉ | 238/1261 [49:19<2:59:15, 10.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06078386306762695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.770190000534058s
Forwarding 1 inputs ...
Total time = 1.356736183166504s / 1 inps = 0.7370629695053074 ips
Post processing 1 inputs ...
Total time = 0.5757431983947754s / 1 inps = 1.736885477393552 ips
19%|█▉ | 239/1261 [49:36<3:32:14, 12.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.14642119407653809s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.070085048675537s
Forwarding 1 inputs ...
Total time = 1.3586301803588867s / 1 inps = 0.7360354675293954 ips
Post processing 1 inputs ...
Total time = 0.4160268306732178s / 1 inps = 2.4036911234349776 ips
19%|█▉ | 240/1261 [49:51<3:46:19, 13.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02755904197692871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.251314878463745s
Forwarding 1 inputs ...
Total time = 1.7183351516723633s / 1 inps = 0.5819586470234015 ips
Post processing 1 inputs ...
Total time = 0.5644831657409668s / 1 inps = 1.771532014931488 ips
19%|█▉ | 241/1261 [50:05<3:50:19, 13.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09786200523376465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.70574688911438s
Forwarding 1 inputs ...
Total time = 1.1650848388671875s / 1 inps = 0.8583065941981534 ips
Post processing 1 inputs ...
Total time = 0.4829580783843994s / 1 inps = 2.070573088548843 ips
19%|█▉ | 242/1261 [50:19<3:49:51, 13.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01735997200012207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.894076108932495s
Forwarding 1 inputs ...
Total time = 1.2947309017181396s / 1 inps = 0.7723612672509597 ips
Post processing 1 inputs ...
Total time = 0.4616069793701172s / 1 inps = 2.166345061256534 ips
19%|█▉ | 243/1261 [50:30<3:38:04, 12.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04459381103515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.25450587272644s
Forwarding 1 inputs ...
Total time = 1.2744500637054443s / 1 inps = 0.7846521636889523 ips
Post processing 1 inputs ...
Total time = 0.4420890808105469s / 1 inps = 2.261987557273645 ips
19%|█▉ | 244/1261 [50:41<3:30:52, 12.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04114389419555664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4180960655212402s
Forwarding 1 inputs ...
Total time = 1.0941228866577148s / 1 inps = 0.9139741177106369 ips
Post processing 1 inputs ...
Total time = 0.46677398681640625s / 1 inps = 2.142364459554437 ips
19%|█▉ | 245/1261 [50:52<3:21:44, 11.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.052156925201416016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.935258150100708s
Forwarding 1 inputs ...
Total time = 1.1621911525726318s / 1 inps = 0.8604436523083103 ips
Post processing 1 inputs ...
Total time = 0.42493391036987305s / 1 inps = 2.3533071275238426 ips
20%|█▉ | 246/1261 [51:07<3:38:42, 12.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05176806449890137s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.3184449672698975s
Forwarding 1 inputs ...
Total time = 2.187540054321289s / 1 inps = 0.45713448676040913 ips
Post processing 1 inputs ...
Total time = 1.515820026397705s / 1 inps = 0.6597089249285525 ips
20%|█▉ | 247/1261 [51:24<3:58:45, 14.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08968186378479004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.723056077957153s
Forwarding 1 inputs ...
Total time = 1.354323148727417s / 1 inps = 0.7383762146719894 ips
Post processing 1 inputs ...
Total time = 0.485353946685791s / 1 inps = 2.0603520519992418 ips
20%|█▉ | 248/1261 [51:38<3:56:19, 14.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06072092056274414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6560959815979004s
Forwarding 1 inputs ...
Total time = 1.1001310348510742s / 1 inps = 0.9089826287241964 ips
Post processing 1 inputs ...
Total time = 0.41867899894714355s / 1 inps = 2.3884646770311155 ips
20%|█▉ | 249/1261 [51:49<3:39:03, 12.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028336048126220703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4228081703186035s
Forwarding 1 inputs ...
Total time = 1.183638095855713s / 1 inps = 0.844852834241575 ips
Post processing 1 inputs ...
Total time = 0.4169600009918213s / 1 inps = 2.398311582936741 ips
20%|█▉ | 250/1261 [51:59<3:25:02, 12.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030488014221191406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.0275750160217285s
Forwarding 1 inputs ...
Total time = 1.1086578369140625s / 1 inps = 0.9019915493345445 ips
Post processing 1 inputs ...
Total time = 0.5681960582733154s / 1 inps = 1.7599558909980626 ips
20%|█▉ | 251/1261 [52:10<3:20:09, 11.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02917790412902832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6264078617095947s
Forwarding 1 inputs ...
Total time = 1.2074010372161865s / 1 inps = 0.8282252285500968 ips
Post processing 1 inputs ...
Total time = 0.4560208320617676s / 1 inps = 2.192882275747769 ips
20%|█▉ | 252/1261 [52:21<3:14:03, 11.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05870389938354492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.448713064193726s
Forwarding 1 inputs ...
Total time = 1.5807950496673584s / 1 inps = 0.6325930741056071 ips
Post processing 1 inputs ...
Total time = 0.8278019428253174s / 1 inps = 1.208018425986009 ips
20%|██ | 253/1261 [52:34<3:22:31, 12.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11468696594238281s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.783582925796509s
Forwarding 1 inputs ...
Total time = 2.6146020889282227s / 1 inps = 0.382467375909548 ips
Post processing 1 inputs ...
Total time = 0.589820146560669s / 1 inps = 1.695432083544708 ips
20%|██ | 254/1261 [52:51<3:45:32, 13.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11278700828552246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.4579408168792725s
Forwarding 1 inputs ...
Total time = 1.821044921875s / 1 inps = 0.5491352728247755 ips
Post processing 1 inputs ...
Total time = 0.5326108932495117s / 1 inps = 1.8775432734747521 ips
20%|██ | 255/1261 [53:06<3:56:20, 14.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06400704383850098s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7968931198120117s
Forwarding 1 inputs ...
Total time = 1.9379329681396484s / 1 inps = 0.5160137199998032 ips
Post processing 1 inputs ...
Total time = 1.0518300533294678s / 1 inps = 0.9507239281047307 ips
20%|██ | 256/1261 [53:20<3:51:57, 13.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04186511039733887s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.755408048629761s
Forwarding 1 inputs ...
Total time = 1.174527883529663s / 1 inps = 0.8514059257536092 ips
Post processing 1 inputs ...
Total time = 0.4378230571746826s / 1 inps = 2.2840277221878247 ips
20%|██ | 257/1261 [53:33<3:49:00, 13.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1235799789428711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9258298873901367s
Forwarding 1 inputs ...
Total time = 1.1755118370056152s / 1 inps = 0.8506932627299636 ips
Post processing 1 inputs ...
Total time = 0.4159209728240967s / 1 inps = 2.4043028972788174 ips
20%|██ | 258/1261 [53:46<3:43:48, 13.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.032234907150268555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.488232135772705s
Forwarding 1 inputs ...
Total time = 1.4066379070281982s / 1 inps = 0.7109150087620619 ips
Post processing 1 inputs ...
Total time = 0.4218268394470215s / 1 inps = 2.370640998830026 ips
21%|██ | 259/1261 [53:59<3:42:12, 13.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09239888191223145s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.545650959014893s
Forwarding 1 inputs ...
Total time = 1.6186180114746094s / 1 inps = 0.6178109924088699 ips
Post processing 1 inputs ...
Total time = 0.7268698215484619s / 1 inps = 1.3757621658713037 ips
21%|██ | 260/1261 [54:12<3:42:25, 13.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05169200897216797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 13.126713991165161s
Forwarding 1 inputs ...
Total time = 3.3590970039367676s / 1 inps = 0.2976990538909796 ips
Post processing 1 inputs ...
Total time = 1.648144006729126s / 1 inps = 0.6067430976402239 ips
21%|██ | 261/1261 [54:42<5:05:46, 18.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11760210990905762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.19073486328125s
Forwarding 1 inputs ...
Total time = 1.8553040027618408s / 1 inps = 0.5389952258559142 ips
Post processing 1 inputs ...
Total time = 0.8236110210418701s / 1 inps = 1.214165394162644 ips
21%|██ | 262/1261 [55:18<6:31:16, 23.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11066985130310059s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.231291055679321s
Forwarding 1 inputs ...
Total time = 1.1370079517364502s / 1 inps = 0.8795013249228291 ips
Post processing 1 inputs ...
Total time = 0.5102019309997559s / 1 inps = 1.9600082619061638 ips
21%|██ | 263/1261 [55:34<5:53:54, 21.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.15727806091308594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6636300086975098s
Forwarding 1 inputs ...
Total time = 1.080132007598877s / 1 inps = 0.9258127645184688 ips
Post processing 1 inputs ...
Total time = 0.5139048099517822s / 1 inps = 1.9458856594353073 ips
21%|██ | 264/1261 [55:46<5:08:20, 18.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0819098949432373s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.931618928909302s
Forwarding 1 inputs ...
Total time = 1.8619170188903809s / 1 inps = 0.5370808633544556 ips
Post processing 1 inputs ...
Total time = 0.7170510292053223s / 1 inps = 1.3946008851117029 ips
21%|██ | 265/1261 [56:02<4:53:30, 17.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12894487380981445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.2585108280181885s
Forwarding 1 inputs ...
Total time = 1.502166986465454s / 1 inps = 0.6657049509209124 ips
Post processing 1 inputs ...
Total time = 1.0691311359405518s / 1 inps = 0.9353389555157472 ips
21%|██ | 266/1261 [56:16<4:34:41, 16.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1630690097808838s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.887570142745972s
Forwarding 1 inputs ...
Total time = 1.693364143371582s / 1 inps = 0.590540436275534 ips
Post processing 1 inputs ...
Total time = 0.7854409217834473s / 1 inps = 1.273170231224225 ips
21%|██ | 267/1261 [56:32<4:34:35, 16.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07822179794311523s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.389829158782959s
Forwarding 1 inputs ...
Total time = 1.2916131019592285s / 1 inps = 0.7742256550999018 ips
Post processing 1 inputs ...
Total time = 0.5587339401245117s / 1 inps = 1.789760614465543 ips
21%|██▏ | 268/1261 [56:47<4:24:45, 16.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12151598930358887s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.713688850402832s
Forwarding 1 inputs ...
Total time = 2.101944923400879s / 1 inps = 0.47574985855577623 ips
Post processing 1 inputs ...
Total time = 0.7128400802612305s / 1 inps = 1.4028391888872687 ips
21%|██▏ | 269/1261 [57:03<4:27:33, 16.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12829303741455078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.177556991577148s
Forwarding 1 inputs ...
Total time = 1.4453480243682861s / 1 inps = 0.6918748862835765 ips
Post processing 1 inputs ...
Total time = 0.5477430820465088s / 1 inps = 1.825673445776336 ips
21%|██▏ | 270/1261 [57:21<4:32:15, 16.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09073781967163086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6181640625s
Forwarding 1 inputs ...
Total time = 1.0151700973510742s / 1 inps = 0.9850565955492009 ips
Post processing 1 inputs ...
Total time = 0.46546101570129395s / 1 inps = 2.1484076351557277 ips
21%|██▏ | 271/1261 [57:32<4:06:33, 14.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12599802017211914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9466569423675537s
Forwarding 1 inputs ...
Total time = 0.9044499397277832s / 1 inps = 1.1056443879038513 ips
Post processing 1 inputs ...
Total time = 0.4150879383087158s / 1 inps = 2.409128061091151 ips
22%|██▏ | 272/1261 [57:41<3:37:16, 13.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04833507537841797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2080719470977783s
Forwarding 1 inputs ...
Total time = 0.9413471221923828s / 1 inps = 1.0623073852618952 ips
Post processing 1 inputs ...
Total time = 0.3595700263977051s / 1 inps = 2.7810994426269073 ips
22%|██▏ | 273/1261 [57:50<3:15:53, 11.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04628705978393555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9330248832702637s
Forwarding 1 inputs ...
Total time = 0.9464890956878662s / 1 inps = 1.0565362079245555 ips
Post processing 1 inputs ...
Total time = 0.35762882232666016s / 1 inps = 2.7961952101461063 ips
22%|██▏ | 274/1261 [57:59<3:00:19, 10.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03084707260131836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.103044033050537s
Forwarding 1 inputs ...
Total time = 0.8952591419219971s / 1 inps = 1.1169950164967195 ips
Post processing 1 inputs ...
Total time = 0.3659648895263672s / 1 inps = 2.732502566828755 ips
22%|██▏ | 275/1261 [58:08<2:50:09, 10.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04222583770751953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1873011589050293s
Forwarding 1 inputs ...
Total time = 0.9844820499420166s / 1 inps = 1.0157625525614178 ips
Post processing 1 inputs ...
Total time = 0.4688858985900879s / 1 inps = 2.1327150230086698 ips
22%|██▏ | 276/1261 [58:17<2:44:44, 10.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019520044326782227s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.831538200378418s
Forwarding 1 inputs ...
Total time = 0.8616540431976318s / 1 inps = 1.1605585883273535 ips
Post processing 1 inputs ...
Total time = 0.3271639347076416s / 1 inps = 3.056571626373226 ips
22%|██▏ | 277/1261 [58:26<2:39:01, 9.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014407157897949219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.173142910003662s
Forwarding 1 inputs ...
Total time = 1.0080790519714355s / 1 inps = 0.9919856960070385 ips
Post processing 1 inputs ...
Total time = 0.35347604751586914s / 1 inps = 2.8290460047511576 ips
22%|██▏ | 278/1261 [58:36<2:42:12, 9.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03979206085205078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.409358024597168s
Forwarding 1 inputs ...
Total time = 1.2784478664398193s / 1 inps = 0.7821984972956058 ips
Post processing 1 inputs ...
Total time = 0.4246530532836914s / 1 inps = 2.354863558067827 ips
22%|██▏ | 279/1261 [58:46<2:42:41, 9.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01948404312133789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0413060188293457s
Forwarding 1 inputs ...
Total time = 1.022887945175171s / 1 inps = 0.9776241911119098 ips
Post processing 1 inputs ...
Total time = 0.4271268844604492s / 1 inps = 2.3412246720625176 ips
22%|██▏ | 280/1261 [58:55<2:38:30, 9.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0187070369720459s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.768684148788452s
Forwarding 1 inputs ...
Total time = 0.9385969638824463s / 1 inps = 1.0654200242280392 ips
Post processing 1 inputs ...
Total time = 0.32573509216308594s / 1 inps = 3.069979330011301 ips
22%|██▏ | 281/1261 [59:04<2:31:45, 9.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031944990158081055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1447129249572754s
Forwarding 1 inputs ...
Total time = 0.9303560256958008s / 1 inps = 1.0748573367406455 ips
Post processing 1 inputs ...
Total time = 0.3249971866607666s / 1 inps = 3.076949712317984 ips
22%|██▏ | 282/1261 [59:13<2:29:05, 9.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02127814292907715s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.869724988937378s
Forwarding 1 inputs ...
Total time = 1.4177050590515137s / 1 inps = 0.7053653322426806 ips
Post processing 1 inputs ...
Total time = 0.40799498558044434s / 1 inps = 2.451010515674169 ips
22%|██▏ | 283/1261 [59:22<2:31:12, 9.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05456399917602539s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.798491954803467s
Forwarding 1 inputs ...
Total time = 1.0879759788513184s / 1 inps = 0.9191379400267613 ips
Post processing 1 inputs ...
Total time = 0.40941309928894043s / 1 inps = 2.442520773606848 ips
23%|██▎ | 284/1261 [59:33<2:38:41, 9.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10467195510864258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1854138374328613s
Forwarding 1 inputs ...
Total time = 0.8887729644775391s / 1 inps = 1.1251467359696807 ips
Post processing 1 inputs ...
Total time = 0.3392679691314697s / 1 inps = 2.947522580926259 ips
23%|██▎ | 285/1261 [59:42<2:34:24, 9.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026519060134887695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7326369285583496s
Forwarding 1 inputs ...
Total time = 0.8536159992218018s / 1 inps = 1.1714869460174704 ips
Post processing 1 inputs ...
Total time = 0.3296678066253662s / 1 inps = 3.0333565483280505 ips
23%|██▎ | 286/1261 [59:50<2:25:36, 8.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03989005088806152s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7491588592529297s
Forwarding 1 inputs ...
Total time = 1.3145630359649658s / 1 inps = 0.760709051328179 ips
Post processing 1 inputs ...
Total time = 0.36246609687805176s / 1 inps = 2.7588787161422172 ips
23%|██▎ | 287/1261 [59:58<2:22:34, 8.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023445844650268555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5726540088653564s
Forwarding 1 inputs ...
Total time = 0.837040901184082s / 1 inps = 1.1946847502737266 ips
Post processing 1 inputs ...
Total time = 0.309398889541626s / 1 inps = 3.232073655731275 ips
23%|██▎ | 288/1261 [1:00:06<2:16:47, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027757883071899414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5817370414733887s
Forwarding 1 inputs ...
Total time = 0.8323311805725098s / 1 inps = 1.201444837513069 ips
Post processing 1 inputs ...
Total time = 0.32656288146972656s / 1 inps = 3.0621973798718556 ips
23%|██▎ | 289/1261 [1:00:13<2:13:06, 8.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03908991813659668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.648806095123291s
Forwarding 1 inputs ...
Total time = 0.7987880706787109s / 1 inps = 1.25189651261357 ips
Post processing 1 inputs ...
Total time = 0.30713701248168945s / 1 inps = 3.2558759099723185 ips
23%|██▎ | 290/1261 [1:00:21<2:10:08, 8.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02637195587158203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5692391395568848s
Forwarding 1 inputs ...
Total time = 0.8373110294342041s / 1 inps = 1.1942993282624375 ips
Post processing 1 inputs ...
Total time = 0.3465900421142578s / 1 inps = 2.8852531189293007 ips
23%|██▎ | 291/1261 [1:00:28<2:07:38, 7.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024452924728393555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.637986898422241s
Forwarding 1 inputs ...
Total time = 0.8744680881500244s / 1 inps = 1.143552307455317 ips
Post processing 1 inputs ...
Total time = 0.3710501194000244s / 1 inps = 2.695053707614935 ips
23%|██▎ | 292/1261 [1:00:36<2:06:50, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03154706954956055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8115241527557373s
Forwarding 1 inputs ...
Total time = 0.8948581218719482s / 1 inps = 1.1174955845604957 ips
Post processing 1 inputs ...
Total time = 0.335097074508667s / 1 inps = 2.9842098784844384 ips
23%|██▎ | 293/1261 [1:00:44<2:08:14, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026610851287841797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8556668758392334s
Forwarding 1 inputs ...
Total time = 1.1795449256896973s / 1 inps = 0.8477845804942828 ips
Post processing 1 inputs ...
Total time = 0.4016242027282715s / 1 inps = 2.489889785543064 ips
23%|██▎ | 294/1261 [1:00:53<2:10:32, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11056804656982422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7655038833618164s
Forwarding 1 inputs ...
Total time = 0.8482778072357178s / 1 inps = 1.178859085396445 ips
Post processing 1 inputs ...
Total time = 0.3204629421234131s / 1 inps = 3.1204856117650297 ips
23%|██▎ | 295/1261 [1:01:02<2:13:04, 8.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03684592247009277s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.416778802871704s
Forwarding 1 inputs ...
Total time = 1.040083885192871s / 1 inps = 0.9614609112173312 ips
Post processing 1 inputs ...
Total time = 0.39160799980163574s / 1 inps = 2.5535739834388926 ips
23%|██▎ | 296/1261 [1:01:11<2:16:50, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030645132064819336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.895253896713257s
Forwarding 1 inputs ...
Total time = 1.0661029815673828s / 1 inps = 0.9379956883056473 ips
Post processing 1 inputs ...
Total time = 0.40694117546081543s / 1 inps = 2.457357623906236 ips
24%|██▎ | 297/1261 [1:01:19<2:17:02, 8.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027467012405395508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.29807186126709s
Forwarding 1 inputs ...
Total time = 0.9057891368865967s / 1 inps = 1.1040097074217818 ips
Post processing 1 inputs ...
Total time = 0.30254292488098145s / 1 inps = 3.30531609818142 ips
24%|██▎ | 298/1261 [1:01:29<2:21:46, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03922915458679199s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9396491050720215s
Forwarding 1 inputs ...
Total time = 0.9189839363098145s / 1 inps = 1.0881583023262693 ips
Post processing 1 inputs ...
Total time = 0.3651089668273926s / 1 inps = 2.7389083557423444 ips
24%|██▎ | 299/1261 [1:01:37<2:18:34, 8.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05865883827209473s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0556089878082275s
Forwarding 1 inputs ...
Total time = 0.9343128204345703s / 1 inps = 1.0703053389922201 ips
Post processing 1 inputs ...
Total time = 0.3555119037628174s / 1 inps = 2.8128453348981473 ips
24%|██▍ | 300/1261 [1:01:46<2:18:13, 8.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024179935455322266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8597700595855713s
Forwarding 1 inputs ...
Total time = 0.9490780830383301s / 1 inps = 1.0536540858668353 ips
Post processing 1 inputs ...
Total time = 0.33547019958496094s / 1 inps = 2.9808907057532563 ips
24%|██▍ | 301/1261 [1:01:54<2:17:38, 8.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02047109603881836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8051278591156006s
Forwarding 1 inputs ...
Total time = 0.9317030906677246s / 1 inps = 1.0733032980317034 ips
Post processing 1 inputs ...
Total time = 0.43993401527404785s / 1 inps = 2.2730681540436706 ips
24%|██▍ | 302/1261 [1:02:03<2:17:47, 8.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038910865783691406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.711000919342041s
Forwarding 1 inputs ...
Total time = 0.9972579479217529s / 1 inps = 1.0027495916016127 ips
Post processing 1 inputs ...
Total time = 0.3334338665008545s / 1 inps = 2.9990954742968117 ips
24%|██▍ | 303/1261 [1:02:11<2:14:51, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02960801124572754s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.802449941635132s
Forwarding 1 inputs ...
Total time = 1.0074131488800049s / 1 inps = 0.992641401506178 ips
Post processing 1 inputs ...
Total time = 0.45212793350219727s / 1 inps = 2.2117633658552536 ips
24%|██▍ | 304/1261 [1:02:20<2:16:08, 8.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06294512748718262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4190919399261475s
Forwarding 1 inputs ...
Total time = 0.9466719627380371s / 1 inps = 1.0563321185806787 ips
Post processing 1 inputs ...
Total time = 0.35152387619018555s / 1 inps = 2.844756978780492 ips
24%|██▍ | 305/1261 [1:02:29<2:22:36, 8.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.043859004974365234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2695260047912598s
Forwarding 1 inputs ...
Total time = 1.4155910015106201s / 1 inps = 0.7064187317755408 ips
Post processing 1 inputs ...
Total time = 0.5557131767272949s / 1 inps = 1.7994894522552052 ips
24%|██▍ | 306/1261 [1:02:39<2:26:45, 9.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05013394355773926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8690781593322754s
Forwarding 1 inputs ...
Total time = 1.0633680820465088s / 1 inps = 0.9404081398375682 ips
Post processing 1 inputs ...
Total time = 0.5118710994720459s / 1 inps = 1.9536168403166736 ips
24%|██▍ | 307/1261 [1:02:49<2:30:16, 9.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018123865127563477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4204859733581543s
Forwarding 1 inputs ...
Total time = 0.9652152061462402s / 1 inps = 1.0360383815259635 ips
Post processing 1 inputs ...
Total time = 0.31627607345581055s / 1 inps = 3.1617946595625672 ips
24%|██▍ | 308/1261 [1:02:58<2:26:05, 9.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05531787872314453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.764382839202881s
Forwarding 1 inputs ...
Total time = 1.306549072265625s / 1 inps = 0.765375002919674 ips
Post processing 1 inputs ...
Total time = 0.39456605911254883s / 1 inps = 2.534429855039186 ips
25%|██▍ | 309/1261 [1:03:07<2:23:31, 9.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1707470417022705s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.534972906112671s
Forwarding 1 inputs ...
Total time = 0.8990230560302734s / 1 inps = 1.1123185254175798 ips
Post processing 1 inputs ...
Total time = 0.3320891857147217s / 1 inps = 3.0112392785323676 ips
25%|██▍ | 310/1261 [1:03:16<2:26:02, 9.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022279977798461914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0015711784362793s
Forwarding 1 inputs ...
Total time = 0.7829768657684326s / 1 inps = 1.2771769431764444 ips
Post processing 1 inputs ...
Total time = 0.37172985076904297s / 1 inps = 2.690125632717356 ips
25%|██▍ | 311/1261 [1:03:24<2:20:09, 8.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0322268009185791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1270370483398438s
Forwarding 1 inputs ...
Total time = 1.2666800022125244s / 1 inps = 0.789465372669726 ips
Post processing 1 inputs ...
Total time = 0.4172520637512207s / 1 inps = 2.3966328434896194 ips
25%|██▍ | 312/1261 [1:03:34<2:23:12, 9.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04489398002624512s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.608649969100952s
Forwarding 1 inputs ...
Total time = 1.1692900657653809s / 1 inps = 0.8552197861575358 ips
Post processing 1 inputs ...
Total time = 0.38854408264160156s / 1 inps = 2.573710538071465 ips
25%|██▍ | 313/1261 [1:03:43<2:21:53, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05490589141845703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4552218914031982s
Forwarding 1 inputs ...
Total time = 0.8597049713134766s / 1 inps = 1.1631897376051898 ips
Post processing 1 inputs ...
Total time = 0.2911040782928467s / 1 inps = 3.435197493159178 ips
25%|██▍ | 314/1261 [1:03:51<2:17:11, 8.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0449681282043457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3700180053710938s
Forwarding 1 inputs ...
Total time = 0.9192700386047363s / 1 inps = 1.0878196373263673 ips
Post processing 1 inputs ...
Total time = 0.35421085357666016s / 1 inps = 2.8231771835968735 ips
25%|██▍ | 315/1261 [1:04:00<2:18:30, 8.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03641700744628906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.435796022415161s
Forwarding 1 inputs ...
Total time = 0.9520561695098877s / 1 inps = 1.0503581952678207 ips
Post processing 1 inputs ...
Total time = 0.3430309295654297s / 1 inps = 2.9151890217796237 ips
25%|██▌ | 316/1261 [1:04:09<2:21:51, 9.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13838481903076172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.702533006668091s
Forwarding 1 inputs ...
Total time = 0.8311681747436523s / 1 inps = 1.2031259501826073 ips
Post processing 1 inputs ...
Total time = 0.427631139755249s / 1 inps = 2.3384639401432303 ips
25%|██▌ | 317/1261 [1:04:18<2:22:00, 9.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01925492286682129s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6486339569091797s
Forwarding 1 inputs ...
Total time = 1.048098087310791s / 1 inps = 0.9541091736612162 ips
Post processing 1 inputs ...
Total time = 0.6071650981903076s / 1 inps = 1.6469984901644719 ips
25%|██▌ | 318/1261 [1:04:27<2:21:04, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0214231014251709s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.008557081222534s
Forwarding 1 inputs ...
Total time = 1.0065431594848633s / 1 inps = 0.9934993751403447 ips
Post processing 1 inputs ...
Total time = 0.31052494049072266s / 1 inps = 3.220353245764091 ips
25%|██▌ | 319/1261 [1:04:36<2:19:46, 8.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.046829938888549805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0475220680236816s
Forwarding 1 inputs ...
Total time = 1.1996290683746338s / 1 inps = 0.833591004388457 ips
Post processing 1 inputs ...
Total time = 0.3850369453430176s / 1 inps = 2.597153369552968 ips
25%|██▌ | 320/1261 [1:04:44<2:18:18, 8.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0687570571899414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.065788984298706s
Forwarding 1 inputs ...
Total time = 0.8998019695281982s / 1 inps = 1.1113556469812347 ips
Post processing 1 inputs ...
Total time = 0.3493068218231201s / 1 inps = 2.862812683647999 ips
25%|██▌ | 321/1261 [1:04:53<2:17:45, 8.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047209978103637695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2142508029937744s
Forwarding 1 inputs ...
Total time = 1.3642899990081787s / 1 inps = 0.7329819911653587 ips
Post processing 1 inputs ...
Total time = 0.3213210105895996s / 1 inps = 3.1121525422974243 ips
26%|██▌ | 322/1261 [1:05:02<2:19:42, 8.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04447197914123535s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.613802909851074s
Forwarding 1 inputs ...
Total time = 0.9632658958435059s / 1 inps = 1.0381349576633014 ips
Post processing 1 inputs ...
Total time = 0.3484480381011963s / 1 inps = 2.869868361002452 ips
26%|██▌ | 323/1261 [1:05:11<2:16:48, 8.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04340791702270508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5420761108398438s
Forwarding 1 inputs ...
Total time = 1.1205968856811523s / 1 inps = 0.8923815626991969 ips
Post processing 1 inputs ...
Total time = 0.333698034286499s / 1 inps = 2.9967212786798805 ips
26%|██▌ | 324/1261 [1:05:19<2:16:06, 8.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017399072647094727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4228830337524414s
Forwarding 1 inputs ...
Total time = 0.9572231769561768s / 1 inps = 1.0446884530939242 ips
Post processing 1 inputs ...
Total time = 0.3161489963531494s / 1 inps = 3.163065553062725 ips
26%|██▌ | 325/1261 [1:05:27<2:10:44, 8.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12543511390686035s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0008480548858643s
Forwarding 1 inputs ...
Total time = 0.8423581123352051s / 1 inps = 1.1871435501793606 ips
Post processing 1 inputs ...
Total time = 0.3287370204925537s / 1 inps = 3.0419451952861243 ips
26%|██▌ | 326/1261 [1:05:35<2:10:24, 8.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04260420799255371s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6524598598480225s
Forwarding 1 inputs ...
Total time = 0.7984468936920166s / 1 inps = 1.2524314489796589 ips
Post processing 1 inputs ...
Total time = 0.3192129135131836s / 1 inps = 3.132705343885468 ips
26%|██▌ | 327/1261 [1:05:43<2:06:34, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03954815864562988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.447953939437866s
Forwarding 1 inputs ...
Total time = 0.8061001300811768s / 1 inps = 1.2405406756345478 ips
Post processing 1 inputs ...
Total time = 0.2853829860687256s / 1 inps = 3.5040631320578486 ips
26%|██▌ | 328/1261 [1:05:50<2:02:23, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03571915626525879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4753329753875732s
Forwarding 1 inputs ...
Total time = 0.7912650108337402s / 1 inps = 1.26379908919051 ips
Post processing 1 inputs ...
Total time = 0.29492878913879395s / 1 inps = 3.390648986557221 ips
26%|██▌ | 329/1261 [1:05:57<1:59:27, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03963208198547363s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3974099159240723s
Forwarding 1 inputs ...
Total time = 0.8549590110778809s / 1 inps = 1.1696467164423008 ips
Post processing 1 inputs ...
Total time = 0.4035780429840088s / 1 inps = 2.4778354952269384 ips
26%|██▌ | 330/1261 [1:06:05<1:58:16, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021570920944213867s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3774380683898926s
Forwarding 1 inputs ...
Total time = 0.7908289432525635s / 1 inps = 1.2644959552025836 ips
Post processing 1 inputs ...
Total time = 0.3007378578186035s / 1 inps = 3.3251550278820283 ips
26%|██▌ | 331/1261 [1:06:12<1:56:25, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031002044677734375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4750521183013916s
Forwarding 1 inputs ...
Total time = 0.8796508312225342s / 1 inps = 1.1368147047734898 ips
Post processing 1 inputs ...
Total time = 0.3831319808959961s / 1 inps = 2.610066634639558 ips
26%|██▋ | 332/1261 [1:06:20<1:57:16, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028100967407226562s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7328760623931885s
Forwarding 1 inputs ...
Total time = 0.8851168155670166s / 1 inps = 1.1297943756264395 ips
Post processing 1 inputs ...
Total time = 0.3693270683288574s / 1 inps = 2.707627156939325 ips
26%|██▋ | 333/1261 [1:06:28<1:59:16, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04422187805175781s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1202590465545654s
Forwarding 1 inputs ...
Total time = 0.9775941371917725s / 1 inps = 1.0229193915509665 ips
Post processing 1 inputs ...
Total time = 0.33255815505981445s / 1 inps = 3.006992866616482 ips
26%|██▋ | 334/1261 [1:06:37<2:06:52, 8.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0953059196472168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6199560165405273s
Forwarding 1 inputs ...
Total time = 0.804534912109375s / 1 inps = 1.2429541402723514 ips
Post processing 1 inputs ...
Total time = 0.3066070079803467s / 1 inps = 3.261504055589295 ips
27%|██▋ | 335/1261 [1:06:46<2:07:25, 8.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027436017990112305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.863668918609619s
Forwarding 1 inputs ...
Total time = 0.7908780574798584s / 1 inps = 1.2644174288846892 ips
Post processing 1 inputs ...
Total time = 0.31432414054870605s / 1 inps = 3.181429203160567 ips
27%|██▋ | 336/1261 [1:06:54<2:09:43, 8.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0497889518737793s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7159268856048584s
Forwarding 1 inputs ...
Total time = 0.9793739318847656s / 1 inps = 1.021060462652442 ips
Post processing 1 inputs ...
Total time = 0.497406005859375s / 1 inps = 2.0104300877354437 ips
27%|██▋ | 337/1261 [1:07:04<2:17:01, 8.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05529594421386719s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.166604995727539s
Forwarding 1 inputs ...
Total time = 0.9428131580352783s / 1 inps = 1.060655540790174 ips
Post processing 1 inputs ...
Total time = 0.3661799430847168s / 1 inps = 2.7308977973396185 ips
27%|██▋ | 338/1261 [1:07:13<2:16:46, 8.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0303189754486084s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6096348762512207s
Forwarding 1 inputs ...
Total time = 0.9239950180053711s / 1 inps = 1.0822569175304657 ips
Post processing 1 inputs ...
Total time = 0.30306291580200195s / 1 inps = 3.299644885134423 ips
27%|██▋ | 339/1261 [1:07:21<2:12:00, 8.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.016249895095825195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.989354133605957s
Forwarding 1 inputs ...
Total time = 0.8935198783874512s / 1 inps = 1.1191692811632967 ips
Post processing 1 inputs ...
Total time = 0.3598959445953369s / 1 inps = 2.77858090655728 ips
27%|██▋ | 340/1261 [1:07:30<2:12:47, 8.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.046072959899902344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7859580516815186s
Forwarding 1 inputs ...
Total time = 1.4338040351867676s / 1 inps = 0.697445379883967 ips
Post processing 1 inputs ...
Total time = 0.952368974685669s / 1 inps = 1.050013205575131 ips
27%|██▋ | 341/1261 [1:07:40<2:17:01, 8.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07175588607788086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9205591678619385s
Forwarding 1 inputs ...
Total time = 0.9484219551086426s / 1 inps = 1.054383014452095 ips
Post processing 1 inputs ...
Total time = 0.38762688636779785s / 1 inps = 2.5798004090231115 ips
27%|██▋ | 342/1261 [1:07:48<2:15:13, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.058424949645996094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3051950931549072s
Forwarding 1 inputs ...
Total time = 0.9511299133300781s / 1 inps = 1.0513810847340705 ips
Post processing 1 inputs ...
Total time = 0.33443522453308105s / 1 inps = 2.9901156536251277 ips
27%|██▋ | 343/1261 [1:07:57<2:15:50, 8.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04303407669067383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7255821228027344s
Forwarding 1 inputs ...
Total time = 1.008554220199585s / 1 inps = 0.9915183338404036 ips
Post processing 1 inputs ...
Total time = 0.43547606468200684s / 1 inps = 2.296337459396809 ips
27%|██▋ | 344/1261 [1:08:05<2:13:24, 8.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023854970932006836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8199000358581543s
Forwarding 1 inputs ...
Total time = 0.9595558643341064s / 1 inps = 1.0421488077653094 ips
Post processing 1 inputs ...
Total time = 0.31973791122436523s / 1 inps = 3.12756155868637 ips
27%|██▋ | 345/1261 [1:08:14<2:12:27, 8.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03278017044067383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5588200092315674s
Forwarding 1 inputs ...
Total time = 0.8231921195983887s / 1 inps = 1.2147832519192125 ips
Post processing 1 inputs ...
Total time = 0.30278897285461426s / 1 inps = 3.3026301802614038 ips
27%|██▋ | 346/1261 [1:08:22<2:08:00, 8.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04901409149169922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.455190896987915s
Forwarding 1 inputs ...
Total time = 0.8770589828491211s / 1 inps = 1.1401741724957946 ips
Post processing 1 inputs ...
Total time = 0.32435011863708496s / 1 inps = 3.083088127736741 ips
28%|██▊ | 347/1261 [1:08:30<2:05:19, 8.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037539005279541016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.830120086669922s
Forwarding 1 inputs ...
Total time = 1.1707570552825928s / 1 inps = 0.8541481731738306 ips
Post processing 1 inputs ...
Total time = 0.5109338760375977s / 1 inps = 1.9572004263158582 ips
28%|██▊ | 348/1261 [1:08:39<2:08:22, 8.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031096935272216797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7712349891662598s
Forwarding 1 inputs ...
Total time = 0.8483128547668457s / 1 inps = 1.1788103815482611 ips
Post processing 1 inputs ...
Total time = 0.30588507652282715s / 1 inps = 3.269201660203823 ips
28%|██▊ | 349/1261 [1:08:47<2:07:17, 8.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020359039306640625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3473970890045166s
Forwarding 1 inputs ...
Total time = 0.8243441581726074s / 1 inps = 1.21308556636925 ips
Post processing 1 inputs ...
Total time = 0.303494930267334s / 1 inps = 3.294947955536353 ips
28%|██▊ | 350/1261 [1:08:54<2:02:35, 8.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04735612869262695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.392085075378418s
Forwarding 1 inputs ...
Total time = 0.817633867263794s / 1 inps = 1.2230413147470187 ips
Post processing 1 inputs ...
Total time = 0.2927510738372803s / 1 inps = 3.4158713301794057 ips
28%|██▊ | 351/1261 [1:09:01<1:58:19, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026073932647705078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7698562145233154s
Forwarding 1 inputs ...
Total time = 1.0360040664672852s / 1 inps = 0.965247176499937 ips
Post processing 1 inputs ...
Total time = 0.32898592948913574s / 1 inps = 3.0396436758035374 ips
28%|██▊ | 352/1261 [1:09:09<1:59:02, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049299001693725586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8985049724578857s
Forwarding 1 inputs ...
Total time = 1.13981294631958s / 1 inps = 0.877336937809812 ips
Post processing 1 inputs ...
Total time = 0.4594390392303467s / 1 inps = 2.176567323654521 ips
28%|██▊ | 353/1261 [1:09:19<2:05:19, 8.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02064204216003418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8164820671081543s
Forwarding 1 inputs ...
Total time = 0.9687259197235107s / 1 inps = 1.0322837240541838 ips
Post processing 1 inputs ...
Total time = 0.35120701789855957s / 1 inps = 2.8473235130194174 ips
28%|██▊ | 354/1261 [1:09:27<2:05:16, 8.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07861995697021484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.460355043411255s
Forwarding 1 inputs ...
Total time = 0.9371428489685059s / 1 inps = 1.0670731800393929 ips
Post processing 1 inputs ...
Total time = 0.3736550807952881s / 1 inps = 2.676264960378963 ips
28%|██▊ | 355/1261 [1:09:36<2:10:02, 8.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06766891479492188s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.647855043411255s
Forwarding 1 inputs ...
Total time = 0.8830809593200684s / 1 inps = 1.1323990053754005 ips
Post processing 1 inputs ...
Total time = 0.36002302169799805s / 1 inps = 2.7776001525781333 ips
28%|██▊ | 356/1261 [1:09:44<2:07:11, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08650803565979004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5839638710021973s
Forwarding 1 inputs ...
Total time = 0.9358282089233398s / 1 inps = 1.068572191418005 ips
Post processing 1 inputs ...
Total time = 0.3731551170349121s / 1 inps = 2.6798506957267336 ips
28%|██▊ | 357/1261 [1:09:54<2:13:10, 8.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014233112335205078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0468521118164062s
Forwarding 1 inputs ...
Total time = 0.8819890022277832s / 1 inps = 1.133800985583876 ips
Post processing 1 inputs ...
Total time = 0.4083259105682373s / 1 inps = 2.4490241106873993 ips
28%|██▊ | 358/1261 [1:10:03<2:14:18, 8.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06311511993408203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0751121044158936s
Forwarding 1 inputs ...
Total time = 0.8796260356903076s / 1 inps = 1.1368467501251551 ips
Post processing 1 inputs ...
Total time = 0.32791614532470703s / 1 inps = 3.0495601215664037 ips
28%|██▊ | 359/1261 [1:10:12<2:14:56, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04471707344055176s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.801543951034546s
Forwarding 1 inputs ...
Total time = 0.8832719326019287s / 1 inps = 1.1321541680309206 ips
Post processing 1 inputs ...
Total time = 0.3477940559387207s / 1 inps = 2.875264780764954 ips
29%|██▊ | 360/1261 [1:10:21<2:12:36, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.041310787200927734s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7122299671173096s
Forwarding 1 inputs ...
Total time = 0.8674919605255127s / 1 inps = 1.1527484351488584 ips
Post processing 1 inputs ...
Total time = 0.34002685546875s / 1 inps = 2.9409441751929637 ips
29%|██▊ | 361/1261 [1:10:29<2:08:15, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.051156044006347656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.803748846054077s
Forwarding 1 inputs ...
Total time = 1.4322309494018555s / 1 inps = 0.6982114165439808 ips
Post processing 1 inputs ...
Total time = 0.5031688213348389s / 1 inps = 1.9874045401842173 ips
29%|██▊ | 362/1261 [1:10:39<2:15:33, 9.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049543142318725586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0036771297454834s
Forwarding 1 inputs ...
Total time = 0.9448039531707764s / 1 inps = 1.0584206349306486 ips
Post processing 1 inputs ...
Total time = 0.3597090244293213s / 1 inps = 2.7800247758212375 ips
29%|██▉ | 363/1261 [1:10:47<2:13:37, 8.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08060884475708008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.936689853668213s
Forwarding 1 inputs ...
Total time = 0.8972470760345459s / 1 inps = 1.1145202104414524 ips
Post processing 1 inputs ...
Total time = 0.38087892532348633s / 1 inps = 2.625506252809038 ips
29%|██▉ | 364/1261 [1:10:56<2:11:32, 8.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04766201972961426s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7402420043945312s
Forwarding 1 inputs ...
Total time = 0.8582630157470703s / 1 inps = 1.1651439962486971 ips
Post processing 1 inputs ...
Total time = 0.33502793312072754s / 1 inps = 2.984825744782449 ips
29%|██▉ | 365/1261 [1:11:04<2:08:57, 8.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04130816459655762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.887408971786499s
Forwarding 1 inputs ...
Total time = 0.922187089920044s / 1 inps = 1.0843786590925955 ips
Post processing 1 inputs ...
Total time = 0.44582414627075195s / 1 inps = 2.243036875334907 ips
29%|██▉ | 366/1261 [1:11:13<2:08:52, 8.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04636216163635254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8751139640808105s
Forwarding 1 inputs ...
Total time = 1.390434980392456s / 1 inps = 0.7191993973840803 ips
Post processing 1 inputs ...
Total time = 0.5946440696716309s / 1 inps = 1.6816782525927 ips
29%|██▉ | 367/1261 [1:11:22<2:12:22, 8.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02560901641845703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.36040997505188s
Forwarding 1 inputs ...
Total time = 1.037451982498169s / 1 inps = 0.9639000328400885 ips
Post processing 1 inputs ...
Total time = 0.34040284156799316s / 1 inps = 2.937695805927216 ips
29%|██▉ | 368/1261 [1:11:33<2:19:45, 9.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.050498008728027344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0202829837799072s
Forwarding 1 inputs ...
Total time = 0.9278130531311035s / 1 inps = 1.0778033318514826 ips
Post processing 1 inputs ...
Total time = 0.4331541061401367s / 1 inps = 2.3086471669657307 ips
29%|██▉ | 369/1261 [1:11:42<2:18:49, 9.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0693199634552002s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.169059991836548s
Forwarding 1 inputs ...
Total time = 1.4614050388336182s / 1 inps = 0.6842729930629797 ips
Post processing 1 inputs ...
Total time = 0.37447214126586914s / 1 inps = 2.670425619966256 ips
29%|██▉ | 370/1261 [1:11:53<2:25:54, 9.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05214095115661621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2369301319122314s
Forwarding 1 inputs ...
Total time = 1.1811580657958984s / 1 inps = 0.8466267377399409 ips
Post processing 1 inputs ...
Total time = 0.415269136428833s / 1 inps = 2.4080768645598 ips
29%|██▉ | 371/1261 [1:12:03<2:23:59, 9.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05991387367248535s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.141000032424927s
Forwarding 1 inputs ...
Total time = 1.1308691501617432s / 1 inps = 0.8842756032888283 ips
Post processing 1 inputs ...
Total time = 0.35593199729919434s / 1 inps = 2.809525436285533 ips
30%|██▉ | 372/1261 [1:12:13<2:27:29, 9.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04394698143005371s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7662789821624756s
Forwarding 1 inputs ...
Total time = 1.201045036315918s / 1 inps = 0.8326082451224286 ips
Post processing 1 inputs ...
Total time = 0.3373451232910156s / 1 inps = 2.9643232729863285 ips
30%|██▉ | 373/1261 [1:12:22<2:24:49, 9.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06212306022644043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0743520259857178s
Forwarding 1 inputs ...
Total time = 1.0440499782562256s / 1 inps = 0.9578085540217165 ips
Post processing 1 inputs ...
Total time = 0.47078585624694824s / 1 inps = 2.124107992478549 ips
30%|██▉ | 374/1261 [1:12:32<2:21:32, 9.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04280209541320801s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9352269172668457s
Forwarding 1 inputs ...
Total time = 0.9749610424041748s / 1 inps = 1.0256820083129488 ips
Post processing 1 inputs ...
Total time = 0.3338000774383545s / 1 inps = 2.9958051767818357 ips
30%|██▉ | 375/1261 [1:12:41<2:20:24, 9.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0375971794128418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.527348041534424s
Forwarding 1 inputs ...
Total time = 0.9736847877502441s / 1 inps = 1.027026418180527 ips
Post processing 1 inputs ...
Total time = 0.4129929542541504s / 1 inps = 2.4213488140638186 ips
30%|██▉ | 376/1261 [1:12:50<2:17:08, 9.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04307198524475098s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.041007041931152s
Forwarding 1 inputs ...
Total time = 1.2492029666900635s / 1 inps = 0.8005104267800762 ips
Post processing 1 inputs ...
Total time = 0.3569300174713135s / 1 inps = 2.8016696580594265 ips
30%|██▉ | 377/1261 [1:13:00<2:22:45, 9.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06368589401245117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4687418937683105s
Forwarding 1 inputs ...
Total time = 0.7935240268707275s / 1 inps = 1.2602012870908437 ips
Post processing 1 inputs ...
Total time = 0.3143649101257324s / 1 inps = 3.181016607737941 ips
30%|██▉ | 378/1261 [1:13:08<2:14:25, 9.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03858804702758789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6883280277252197s
Forwarding 1 inputs ...
Total time = 0.7919120788574219s / 1 inps = 1.2627664442785231 ips
Post processing 1 inputs ...
Total time = 0.3144950866699219s / 1 inps = 3.179699913879893 ips
30%|███ | 379/1261 [1:13:16<2:07:41, 8.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.013769865036010742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.498387098312378s
Forwarding 1 inputs ...
Total time = 0.8753089904785156s / 1 inps = 1.1424537059231141 ips
Post processing 1 inputs ...
Total time = 0.3480038642883301s / 1 inps = 2.8735313099037154 ips
30%|███ | 380/1261 [1:13:24<2:03:20, 8.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11719894409179688s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.628598928451538s
Forwarding 1 inputs ...
Total time = 0.8208398818969727s / 1 inps = 1.218264392428138 ips
Post processing 1 inputs ...
Total time = 0.3308279514312744s / 1 inps = 3.0227191979204275 ips
30%|███ | 381/1261 [1:13:32<2:01:27, 8.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.041964054107666016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.543621063232422s
Forwarding 1 inputs ...
Total time = 0.8397021293640137s / 1 inps = 1.1908984924897061 ips
Post processing 1 inputs ...
Total time = 0.30138611793518066s / 1 inps = 3.31800285577543 ips
30%|███ | 382/1261 [1:13:39<1:58:12, 8.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01826786994934082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8419189453125s
Forwarding 1 inputs ...
Total time = 1.5449919700622559s / 1 inps = 0.6472525549499812 ips
Post processing 1 inputs ...
Total time = 0.4820878505706787s / 1 inps = 2.07431072742496 ips
30%|███ | 383/1261 [1:13:48<2:03:36, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027599096298217773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.599066972732544s
Forwarding 1 inputs ...
Total time = 1.0608351230621338s / 1 inps = 0.942653554977958 ips
Post processing 1 inputs ...
Total time = 0.760869026184082s / 1 inps = 1.3142866453839106 ips
30%|███ | 384/1261 [1:13:59<2:12:26, 9.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040551185607910156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.432055950164795s
Forwarding 1 inputs ...
Total time = 1.1004250049591064s / 1 inps = 0.9087398009800419 ips
Post processing 1 inputs ...
Total time = 0.41004300117492676s / 1 inps = 2.438768609961944 ips
31%|███ | 385/1261 [1:14:09<2:16:58, 9.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13208794593811035s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9024531841278076s
Forwarding 1 inputs ...
Total time = 0.9514729976654053s / 1 inps = 1.0510019753095081 ips
Post processing 1 inputs ...
Total time = 0.3997490406036377s / 1 inps = 2.5015694809172233 ips
31%|███ | 386/1261 [1:14:19<2:20:40, 9.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0897669792175293s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6878838539123535s
Forwarding 1 inputs ...
Total time = 1.0483720302581787s / 1 inps = 0.9538598618981982 ips
Post processing 1 inputs ...
Total time = 0.5055289268493652s / 1 inps = 1.978126170212164 ips
31%|███ | 387/1261 [1:14:29<2:20:37, 9.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.054205894470214844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.111648082733154s
Forwarding 1 inputs ...
Total time = 0.9837110042572021s / 1 inps = 1.0165587206733522 ips
Post processing 1 inputs ...
Total time = 0.4906609058380127s / 1 inps = 2.0380674068419484 ips
31%|███ | 388/1261 [1:14:40<2:25:57, 10.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10546493530273438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.982463121414185s
Forwarding 1 inputs ...
Total time = 1.9118340015411377s / 1 inps = 0.5230579638158416 ips
Post processing 1 inputs ...
Total time = 0.5917611122131348s / 1 inps = 1.6898710972407218 ips
31%|███ | 389/1261 [1:14:58<3:01:04, 12.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12554597854614258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.762453079223633s
Forwarding 1 inputs ...
Total time = 0.9935588836669922s / 1 inps = 1.0064828732739375 ips
Post processing 1 inputs ...
Total time = 0.431318998336792s / 1 inps = 2.318469633510458 ips
31%|███ | 390/1261 [1:15:12<3:06:52, 12.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10333704948425293s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4937708377838135s
Forwarding 1 inputs ...
Total time = 1.2658209800720215s / 1 inps = 0.7900011263386573 ips
Post processing 1 inputs ...
Total time = 0.4771699905395508s / 1 inps = 2.0956892089321655 ips
31%|███ | 391/1261 [1:15:23<2:58:44, 12.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10741686820983887s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.691338062286377s
Forwarding 1 inputs ...
Total time = 1.5750319957733154s / 1 inps = 0.6349077369117292 ips
Post processing 1 inputs ...
Total time = 0.4843559265136719s / 1 inps = 2.0645974277590944 ips
31%|███ | 392/1261 [1:15:37<3:06:15, 12.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1473829746246338s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.724766969680786s
Forwarding 1 inputs ...
Total time = 1.1240999698638916s / 1 inps = 0.889600593193755 ips
Post processing 1 inputs ...
Total time = 0.45790791511535645s / 1 inps = 2.1838451946131556 ips
31%|███ | 393/1261 [1:15:50<3:07:31, 12.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06205582618713379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.201798915863037s
Forwarding 1 inputs ...
Total time = 1.1338300704956055s / 1 inps = 0.8819663775215387 ips
Post processing 1 inputs ...
Total time = 0.7293300628662109s / 1 inps = 1.3711213220391287 ips
31%|███ | 394/1261 [1:16:02<3:03:07, 12.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1107950210571289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.588407039642334s
Forwarding 1 inputs ...
Total time = 1.2689738273620605s / 1 inps = 0.7880383176056495 ips
Post processing 1 inputs ...
Total time = 0.4875640869140625s / 1 inps = 2.051012424498482 ips
31%|███▏ | 395/1261 [1:16:14<3:01:01, 12.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09493494033813477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.525799036026001s
Forwarding 1 inputs ...
Total time = 1.1038339138031006s / 1 inps = 0.9059333904270473 ips
Post processing 1 inputs ...
Total time = 0.40779995918273926s / 1 inps = 2.4521826878160375 ips
31%|███▏ | 396/1261 [1:16:25<2:53:25, 12.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05370903015136719s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.391534090042114s
Forwarding 1 inputs ...
Total time = 0.9211618900299072s / 1 inps = 1.0855855098038556 ips
Post processing 1 inputs ...
Total time = 0.3328371047973633s / 1 inps = 3.004472715290612 ips
31%|███▏ | 397/1261 [1:16:40<3:02:54, 12.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.17849206924438477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.070743083953857s
Forwarding 1 inputs ...
Total time = 1.4986047744750977s / 1 inps = 0.6672873442234032 ips
Post processing 1 inputs ...
Total time = 0.5115399360656738s / 1 inps = 1.954881583031702 ips
32%|███▏ | 398/1261 [1:16:51<2:59:02, 12.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08703303337097168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.800501823425293s
Forwarding 1 inputs ...
Total time = 1.4684929847717285s / 1 inps = 0.6809702261910676 ips
Post processing 1 inputs ...
Total time = 0.4330589771270752s / 1 inps = 2.309154301878295 ips
32%|███▏ | 399/1261 [1:17:03<2:56:58, 12.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08660888671875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8966691493988037s
Forwarding 1 inputs ...
Total time = 0.9710488319396973s / 1 inps = 1.02981432767132 ips
Post processing 1 inputs ...
Total time = 0.3920631408691406s / 1 inps = 2.550609572180546 ips
32%|███▏ | 400/1261 [1:17:13<2:44:04, 11.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13103508949279785s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.896793842315674s
Forwarding 1 inputs ...
Total time = 0.898792028427124s / 1 inps = 1.1126044383704523 ips
Post processing 1 inputs ...
Total time = 0.44168710708618164s / 1 inps = 2.264046162898028 ips
32%|███▏ | 401/1261 [1:17:22<2:32:18, 10.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.059179067611694336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6927080154418945s
Forwarding 1 inputs ...
Total time = 0.9094488620758057s / 1 inps = 1.0995670473626329 ips
Post processing 1 inputs ...
Total time = 0.33618903160095215s / 1 inps = 2.9745170306060866 ips
32%|███▏ | 402/1261 [1:17:30<2:22:45, 9.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1434009075164795s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5072078704833984s
Forwarding 1 inputs ...
Total time = 0.8196859359741211s / 1 inps = 1.2199794532421644 ips
Post processing 1 inputs ...
Total time = 0.30721282958984375s / 1 inps = 3.2550723917848363 ips
32%|███▏ | 403/1261 [1:17:39<2:18:18, 9.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11286687850952148s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.326698064804077s
Forwarding 1 inputs ...
Total time = 1.0466539859771729s / 1 inps = 0.9554255880145376 ips
Post processing 1 inputs ...
Total time = 0.3733489513397217s / 1 inps = 2.678459378047293 ips
32%|███▏ | 404/1261 [1:17:49<2:19:33, 9.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08751988410949707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.640251874923706s
Forwarding 1 inputs ...
Total time = 0.9181900024414062s / 1 inps = 1.0890992031508364 ips
Post processing 1 inputs ...
Total time = 0.3594691753387451s / 1 inps = 2.7818796954082416 ips
32%|███▏ | 405/1261 [1:17:58<2:15:04, 9.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12259411811828613s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.636600971221924s
Forwarding 1 inputs ...
Total time = 0.9986109733581543s / 1 inps = 1.0013909587205663 ips
Post processing 1 inputs ...
Total time = 0.3564140796661377s / 1 inps = 2.805725298329196 ips
32%|███▏ | 406/1261 [1:18:08<2:16:56, 9.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.16879701614379883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8602330684661865s
Forwarding 1 inputs ...
Total time = 0.8937849998474121s / 1 inps = 1.1188373044644082 ips
Post processing 1 inputs ...
Total time = 0.3087780475616455s / 1 inps = 3.238572197398057 ips
32%|███▏ | 407/1261 [1:18:16<2:11:45, 9.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035961151123046875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.481909990310669s
Forwarding 1 inputs ...
Total time = 0.8560988903045654s / 1 inps = 1.1680893543084028 ips
Post processing 1 inputs ...
Total time = 0.31960582733154297s / 1 inps = 3.128854089893206 ips
32%|███▏ | 408/1261 [1:18:24<2:04:56, 8.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04085087776184082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5771820545196533s
Forwarding 1 inputs ...
Total time = 0.833137035369873s / 1 inps = 1.2002827356679058 ips
Post processing 1 inputs ...
Total time = 0.34113001823425293s / 1 inps = 2.931433607561628 ips
32%|███▏ | 409/1261 [1:18:31<2:00:00, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025589942932128906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3881659507751465s
Forwarding 1 inputs ...
Total time = 0.7878789901733398s / 1 inps = 1.2692304433451027 ips
Post processing 1 inputs ...
Total time = 0.2898280620574951s / 1 inps = 3.4503215213219187 ips
33%|███▎ | 410/1261 [1:18:39<1:54:44, 8.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03692889213562012s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5912179946899414s
Forwarding 1 inputs ...
Total time = 0.8313391208648682s / 1 inps = 1.2028785544937048 ips
Post processing 1 inputs ...
Total time = 0.3305480480194092s / 1 inps = 3.025278793784563 ips
33%|███▎ | 411/1261 [1:18:46<1:52:19, 7.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024255037307739258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.583472967147827s
Forwarding 1 inputs ...
Total time = 0.9000821113586426s / 1 inps = 1.1110097483112233 ips
Post processing 1 inputs ...
Total time = 0.2894399166107178s / 1 inps = 3.454948480188204 ips
33%|███▎ | 412/1261 [1:18:54<1:51:26, 7.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05554699897766113s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.561213970184326s
Forwarding 1 inputs ...
Total time = 0.8698470592498779s / 1 inps = 1.1496273849133443 ips
Post processing 1 inputs ...
Total time = 0.4736659526824951s / 1 inps = 2.1111924856256534 ips
33%|███▎ | 413/1261 [1:19:02<1:51:45, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03753519058227539s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6469058990478516s
Forwarding 1 inputs ...
Total time = 0.889746904373169s / 1 inps = 1.1239151213507226 ips
Post processing 1 inputs ...
Total time = 0.31456589698791504s / 1 inps = 3.178984147917401 ips
33%|███▎ | 414/1261 [1:19:10<1:51:19, 7.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036514997482299805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3621909618377686s
Forwarding 1 inputs ...
Total time = 0.905026912689209s / 1 inps = 1.1049395172443952 ips
Post processing 1 inputs ...
Total time = 0.3083939552307129s / 1 inps = 3.242605709479257 ips
33%|███▎ | 415/1261 [1:19:17<1:49:45, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08642387390136719s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9930050373077393s
Forwarding 1 inputs ...
Total time = 0.9626278877258301s / 1 inps = 1.0388230101690281 ips
Post processing 1 inputs ...
Total time = 0.48259401321411133s / 1 inps = 2.0721351127833665 ips
33%|███▎ | 416/1261 [1:19:27<1:55:41, 8.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.065155029296875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6934499740600586s
Forwarding 1 inputs ...
Total time = 0.85772705078125s / 1 inps = 1.1658720557887996 ips
Post processing 1 inputs ...
Total time = 0.3057229518890381s / 1 inps = 3.270935315196581 ips
33%|███▎ | 417/1261 [1:19:35<1:54:35, 8.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02657485008239746s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7573959827423096s
Forwarding 1 inputs ...
Total time = 0.9071359634399414s / 1 inps = 1.1023705820326093 ips
Post processing 1 inputs ...
Total time = 0.291334867477417s / 1 inps = 3.4324762039597463 ips
33%|███▎ | 418/1261 [1:19:42<1:53:15, 8.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03570199012756348s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.166465997695923s
Forwarding 1 inputs ...
Total time = 1.4086971282958984s / 1 inps = 0.7098757993563176 ips
Post processing 1 inputs ...
Total time = 0.36257195472717285s / 1 inps = 2.7580732237066634 ips
33%|███▎ | 419/1261 [1:19:54<2:08:50, 9.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05686187744140625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.58481502532959s
Forwarding 1 inputs ...
Total time = 0.8810000419616699s / 1 inps = 1.1350737257325891 ips
Post processing 1 inputs ...
Total time = 0.3047361373901367s / 1 inps = 3.2815274504833525 ips
33%|███▎ | 420/1261 [1:20:02<2:02:59, 8.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0385289192199707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.409224033355713s
Forwarding 1 inputs ...
Total time = 1.0360119342803955s / 1 inps = 0.9652398460975171 ips
Post processing 1 inputs ...
Total time = 0.3353841304779053s / 1 inps = 2.9816556870924424 ips
33%|███▎ | 421/1261 [1:20:10<1:58:07, 8.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025177001953125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5958080291748047s
Forwarding 1 inputs ...
Total time = 0.9094488620758057s / 1 inps = 1.0995670473626329 ips
Post processing 1 inputs ...
Total time = 0.3203418254852295s / 1 inps = 3.1216654225069607 ips
33%|███▎ | 422/1261 [1:20:18<1:56:34, 8.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021414995193481445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.659263849258423s
Forwarding 1 inputs ...
Total time = 1.536268949508667s / 1 inps = 0.6509276909618087 ips
Post processing 1 inputs ...
Total time = 0.4068729877471924s / 1 inps = 2.4577694516828994 ips
34%|███▎ | 423/1261 [1:20:27<1:59:46, 8.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049347877502441406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5027050971984863s
Forwarding 1 inputs ...
Total time = 0.9850001335144043s / 1 inps = 1.0152282887841622 ips
Post processing 1 inputs ...
Total time = 0.4182710647583008s / 1 inps = 2.39079411476348 ips
34%|███▎ | 424/1261 [1:20:35<1:56:41, 8.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09326696395874023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.209291934967041s
Forwarding 1 inputs ...
Total time = 0.9901289939880371s / 1 inps = 1.0099694141590627 ips
Post processing 1 inputs ...
Total time = 0.380126953125s / 1 inps = 2.6307000642260756 ips
34%|███▎ | 425/1261 [1:20:45<2:03:08, 8.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.059967041015625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.479135036468506s
Forwarding 1 inputs ...
Total time = 0.7775540351867676s / 1 inps = 1.2860842523436988 ips
Post processing 1 inputs ...
Total time = 0.30410194396972656s / 1 inps = 3.288370955298958 ips
34%|███▍ | 426/1261 [1:20:53<2:00:44, 8.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.052401065826416016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.71105694770813s
Forwarding 1 inputs ...
Total time = 0.9181950092315674s / 1 inps = 1.089093264443786 ips
Post processing 1 inputs ...
Total time = 0.3416910171508789s / 1 inps = 2.9266206888852295 ips
34%|███▍ | 427/1261 [1:21:01<1:58:10, 8.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027284860610961914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.36387300491333s
Forwarding 1 inputs ...
Total time = 0.864501953125s / 1 inps = 1.1567353854843265 ips
Post processing 1 inputs ...
Total time = 0.29135894775390625s / 1 inps = 3.4321925161695774 ips
34%|███▍ | 428/1261 [1:21:09<1:53:50, 8.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038244009017944336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.161647081375122s
Forwarding 1 inputs ...
Total time = 0.9691009521484375s / 1 inps = 1.0318842405252633 ips
Post processing 1 inputs ...
Total time = 0.38156795501708984s / 1 inps = 2.6207651529731093 ips
34%|███▍ | 429/1261 [1:21:18<1:58:45, 8.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04020094871520996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.729822874069214s
Forwarding 1 inputs ...
Total time = 0.8993079662322998s / 1 inps = 1.1119661312348372 ips
Post processing 1 inputs ...
Total time = 0.343980073928833s / 1 inps = 2.9071451394794825 ips
34%|███▍ | 430/1261 [1:21:27<1:58:11, 8.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01972508430480957s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5618860721588135s
Forwarding 1 inputs ...
Total time = 0.9299619197845459s / 1 inps = 1.0753128474676474 ips
Post processing 1 inputs ...
Total time = 0.32065391540527344s / 1 inps = 3.1186271302382296 ips
34%|███▍ | 431/1261 [1:21:34<1:55:41, 8.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03973102569580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.085019826889038s
Forwarding 1 inputs ...
Total time = 1.451984167098999s / 1 inps = 0.6887127440225167 ips
Post processing 1 inputs ...
Total time = 0.4716019630432129s / 1 inps = 2.120432225402696 ips
34%|███▍ | 432/1261 [1:21:44<2:01:04, 8.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05660820007324219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9789929389953613s
Forwarding 1 inputs ...
Total time = 1.1865918636322021s / 1 inps = 0.842749753010241 ips
Post processing 1 inputs ...
Total time = 0.3033170700073242s / 1 inps = 3.2968800601161448 ips
34%|███▍ | 433/1261 [1:21:54<2:07:13, 9.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047801971435546875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5376150608062744s
Forwarding 1 inputs ...
Total time = 1.0941720008850098s / 1 inps = 0.913933092046918 ips
Post processing 1 inputs ...
Total time = 0.29508304595947266s / 1 inps = 3.3888764999983843 ips
34%|███▍ | 434/1261 [1:22:04<2:07:03, 9.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06515908241271973s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.334613800048828s
Forwarding 1 inputs ...
Total time = 1.186758041381836s / 1 inps = 0.8426317455878548 ips
Post processing 1 inputs ...
Total time = 0.38314199447631836s / 1 inps = 2.609998419428829 ips
34%|███▍ | 435/1261 [1:22:14<2:10:53, 9.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04671812057495117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7271761894226074s
Forwarding 1 inputs ...
Total time = 0.8691339492797852s / 1 inps = 1.1505706350887088 ips
Post processing 1 inputs ...
Total time = 0.3957829475402832s / 1 inps = 2.5266374062218 ips
35%|███▍ | 436/1261 [1:22:23<2:09:16, 9.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.059816837310791016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5652430057525635s
Forwarding 1 inputs ...
Total time = 1.9784040451049805s / 1 inps = 0.5054579232559833 ips
Post processing 1 inputs ...
Total time = 0.45307087898254395s / 1 inps = 2.2071601738025812 ips
35%|███▍ | 437/1261 [1:22:32<2:09:17, 9.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08481812477111816s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2197999954223633s
Forwarding 1 inputs ...
Total time = 1.3608160018920898s / 1 inps = 0.7348532047018786 ips
Post processing 1 inputs ...
Total time = 0.5591728687286377s / 1 inps = 1.7883557231123322 ips
35%|███▍ | 438/1261 [1:22:42<2:10:33, 9.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06959795951843262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.422245979309082s
Forwarding 1 inputs ...
Total time = 0.8203809261322021s / 1 inps = 1.218945941021126 ips
Post processing 1 inputs ...
Total time = 0.40369105339050293s / 1 inps = 2.477141843004058 ips
35%|███▍ | 439/1261 [1:22:52<2:11:42, 9.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07895112037658691s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2963180541992188s
Forwarding 1 inputs ...
Total time = 0.887091875076294s / 1 inps = 1.1272789528299934 ips
Post processing 1 inputs ...
Total time = 0.3189089298248291s / 1 inps = 3.1356914356373835 ips
35%|███▍ | 440/1261 [1:23:05<2:26:21, 10.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10429096221923828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5403780937194824s
Forwarding 1 inputs ...
Total time = 1.1279628276824951s / 1 inps = 0.8865540383583326 ips
Post processing 1 inputs ...
Total time = 0.3473200798034668s / 1 inps = 2.879188558766473 ips
35%|███▍ | 441/1261 [1:23:15<2:22:33, 10.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11926603317260742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6252219676971436s
Forwarding 1 inputs ...
Total time = 0.8047211170196533s / 1 inps = 1.2426665323554291 ips
Post processing 1 inputs ...
Total time = 0.31829309463500977s / 1 inps = 3.1417583882764126 ips
35%|███▌ | 442/1261 [1:23:24<2:15:03, 9.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05360698699951172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.532728910446167s
Forwarding 1 inputs ...
Total time = 1.0340471267700195s / 1 inps = 0.9670739119247204 ips
Post processing 1 inputs ...
Total time = 0.30054688453674316s / 1 inps = 3.3272678954612345 ips
35%|███▌ | 443/1261 [1:23:32<2:08:18, 9.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.015676021575927734s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.172593116760254s
Forwarding 1 inputs ...
Total time = 0.9899251461029053s / 1 inps = 1.010177389610474 ips
Post processing 1 inputs ...
Total time = 0.3658769130706787s / 1 inps = 2.7331596071677358 ips
35%|███▌ | 444/1261 [1:23:41<2:05:04, 9.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024645090103149414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1996519565582275s
Forwarding 1 inputs ...
Total time = 0.9069480895996094s / 1 inps = 1.102598937543901 ips
Post processing 1 inputs ...
Total time = 0.35289502143859863s / 1 inps = 2.8337039041339755 ips
35%|███▌ | 445/1261 [1:23:50<2:05:06, 9.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02050185203552246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2524030208587646s
Forwarding 1 inputs ...
Total time = 0.8722560405731201s / 1 inps = 1.1464523643114528 ips
Post processing 1 inputs ...
Total time = 0.3426070213317871s / 1 inps = 2.918795989973542 ips
35%|███▌ | 446/1261 [1:23:59<2:06:25, 9.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05953788757324219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5667920112609863s
Forwarding 1 inputs ...
Total time = 1.037226915359497s / 1 inps = 0.9641091888301082 ips
Post processing 1 inputs ...
Total time = 0.3679468631744385s / 1 inps = 2.7177837347832314 ips
35%|███▌ | 447/1261 [1:24:08<2:02:04, 9.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06444907188415527s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.611522912979126s
Forwarding 1 inputs ...
Total time = 1.0157129764556885s / 1 inps = 0.984530101692194 ips
Post processing 1 inputs ...
Total time = 0.3507230281829834s / 1 inps = 2.8512527540058423 ips
36%|███▌ | 448/1261 [1:24:16<1:59:52, 8.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08095788955688477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8886990547180176s
Forwarding 1 inputs ...
Total time = 0.9215691089630127s / 1 inps = 1.0851058160198543 ips
Post processing 1 inputs ...
Total time = 0.3625478744506836s / 1 inps = 2.7582564137637147 ips
36%|███▌ | 449/1261 [1:24:25<1:59:33, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06031489372253418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4380781650543213s
Forwarding 1 inputs ...
Total time = 0.9096529483795166s / 1 inps = 1.0993203526481505 ips
Post processing 1 inputs ...
Total time = 0.3258981704711914s / 1 inps = 3.0684431230595 ips
36%|███▌ | 450/1261 [1:24:33<1:56:30, 8.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030935049057006836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9455130100250244s
Forwarding 1 inputs ...
Total time = 0.8960819244384766s / 1 inps = 1.115969391556071 ips
Post processing 1 inputs ...
Total time = 0.45913100242614746s / 1 inps = 2.1780276102371303 ips
36%|███▌ | 451/1261 [1:24:42<1:57:21, 8.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08340191841125488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4086480140686035s
Forwarding 1 inputs ...
Total time = 1.1540608406066895s / 1 inps = 0.8665054430529853 ips
Post processing 1 inputs ...
Total time = 0.3055710792541504s / 1 inps = 3.2725610108156777 ips
36%|███▌ | 452/1261 [1:24:51<1:59:39, 8.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.046762943267822266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7533299922943115s
Forwarding 1 inputs ...
Total time = 0.9317488670349121s / 1 inps = 1.073250567164393 ips
Post processing 1 inputs ...
Total time = 0.3142099380493164s / 1 inps = 3.182585522941182 ips
36%|███▌ | 453/1261 [1:24:59<1:56:08, 8.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04021811485290527s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6045210361480713s
Forwarding 1 inputs ...
Total time = 0.8034710884094238s / 1 inps = 1.2445998548368813 ips
Post processing 1 inputs ...
Total time = 0.2969048023223877s / 1 inps = 3.3680829416634745 ips
36%|███▌ | 454/1261 [1:25:07<1:53:31, 8.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02120208740234375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.500443935394287s
Forwarding 1 inputs ...
Total time = 1.6475849151611328s / 1 inps = 0.6069489898808649 ips
Post processing 1 inputs ...
Total time = 0.3477780818939209s / 1 inps = 2.875396846616169 ips
36%|███▌ | 455/1261 [1:25:18<2:02:02, 9.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020873069763183594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6393191814422607s
Forwarding 1 inputs ...
Total time = 0.8705861568450928s / 1 inps = 1.1486513909477822 ips
Post processing 1 inputs ...
Total time = 0.32727980613708496s / 1 inps = 3.0554894657360507 ips
36%|███▌ | 456/1261 [1:25:26<1:56:51, 8.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10484004020690918s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.601475954055786s
Forwarding 1 inputs ...
Total time = 0.8241260051727295s / 1 inps = 1.2134066801962025 ips
Post processing 1 inputs ...
Total time = 0.31277012825012207s / 1 inps = 3.1972362757107695 ips
36%|███▌ | 457/1261 [1:25:34<1:53:38, 8.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0396728515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4149601459503174s
Forwarding 1 inputs ...
Total time = 0.8448150157928467s / 1 inps = 1.183691081841762 ips
Post processing 1 inputs ...
Total time = 0.3420701026916504s / 1 inps = 2.9233773782955312 ips
36%|███▋ | 458/1261 [1:25:41<1:49:31, 8.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05320405960083008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8500280380249023s
Forwarding 1 inputs ...
Total time = 0.8660738468170166s / 1 inps = 1.1546359512819686 ips
Post processing 1 inputs ...
Total time = 0.3552978038787842s / 1 inps = 2.8145403351301512 ips
36%|███▋ | 459/1261 [1:25:50<1:53:05, 8.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0304410457611084s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.535417079925537s
Forwarding 1 inputs ...
Total time = 0.8433959484100342s / 1 inps = 1.1856827174534037 ips
Post processing 1 inputs ...
Total time = 0.2953529357910156s / 1 inps = 3.3857797868905393 ips
36%|███▋ | 460/1261 [1:25:58<1:49:10, 8.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.042192935943603516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4780619144439697s
Forwarding 1 inputs ...
Total time = 0.7727720737457275s / 1 inps = 1.2940426213292995 ips
Post processing 1 inputs ...
Total time = 0.2899899482727051s / 1 inps = 3.448395387344961 ips
37%|███▋ | 461/1261 [1:26:05<1:46:01, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028575897216796875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.350036859512329s
Forwarding 1 inputs ...
Total time = 0.7836558818817139s / 1 inps = 1.2760703047347783 ips
Post processing 1 inputs ...
Total time = 0.29224514961242676s / 1 inps = 3.4217847629847484 ips
37%|███▋ | 462/1261 [1:26:12<1:42:16, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04663991928100586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3810460567474365s
Forwarding 1 inputs ...
Total time = 0.8632259368896484s / 1 inps = 1.1584452659093771 ips
Post processing 1 inputs ...
Total time = 0.299576997756958s / 1 inps = 3.338039994683717 ips
37%|███▋ | 463/1261 [1:26:20<1:40:43, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022001028060913086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.368149995803833s
Forwarding 1 inputs ...
Total time = 0.9504499435424805s / 1 inps = 1.0521332625607178 ips
Post processing 1 inputs ...
Total time = 0.29261112213134766s / 1 inps = 3.4175050924794266 ips
37%|███▋ | 464/1261 [1:26:27<1:40:30, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02925705909729004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9897561073303223s
Forwarding 1 inputs ...
Total time = 1.2248718738555908s / 1 inps = 0.8164119213973374 ips
Post processing 1 inputs ...
Total time = 0.3333768844604492s / 1 inps = 2.999608091060185 ips
37%|███▋ | 465/1261 [1:26:36<1:45:26, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04450201988220215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5111591815948486s
Forwarding 1 inputs ...
Total time = 0.8970210552215576s / 1 inps = 1.1148010341329249 ips
Post processing 1 inputs ...
Total time = 0.31957292556762695s / 1 inps = 3.1291762223717647 ips
37%|███▋ | 466/1261 [1:26:44<1:46:10, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12031698226928711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7618441581726074s
Forwarding 1 inputs ...
Total time = 0.7786791324615479s / 1 inps = 1.2842260159699108 ips
Post processing 1 inputs ...
Total time = 0.294752836227417s / 1 inps = 3.392673036837035 ips
37%|███▋ | 467/1261 [1:26:52<1:46:35, 8.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03277301788330078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.574773073196411s
Forwarding 1 inputs ...
Total time = 0.8980481624603271s / 1 inps = 1.1135260243285412 ips
Post processing 1 inputs ...
Total time = 0.359760046005249s / 1 inps = 2.7796305095686185 ips
37%|███▋ | 468/1261 [1:27:00<1:44:49, 7.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0263059139251709s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.356351852416992s
Forwarding 1 inputs ...
Total time = 0.7953839302062988s / 1 inps = 1.2572544679657154 ips
Post processing 1 inputs ...
Total time = 0.29386305809020996s / 1 inps = 3.402945598194314 ips
37%|███▋ | 469/1261 [1:27:07<1:41:49, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03610801696777344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4880170822143555s
Forwarding 1 inputs ...
Total time = 0.8162810802459717s / 1 inps = 1.2250682077534714 ips
Post processing 1 inputs ...
Total time = 0.3074519634246826s / 1 inps = 3.25254062085368 ips
37%|███▋ | 470/1261 [1:27:14<1:39:56, 7.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02629399299621582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3783040046691895s
Forwarding 1 inputs ...
Total time = 0.7970998287200928s / 1 inps = 1.254548005117132 ips
Post processing 1 inputs ...
Total time = 0.31000494956970215s / 1 inps = 3.225754948067879 ips
37%|███▋ | 471/1261 [1:27:22<1:38:06, 7.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02463698387145996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4279260635375977s
Forwarding 1 inputs ...
Total time = 0.8077361583709717s / 1 inps = 1.2380280239240282 ips
Post processing 1 inputs ...
Total time = 0.29755711555480957s / 1 inps = 3.3606993337579976 ips
37%|███▋ | 472/1261 [1:27:29<1:38:28, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025866985321044922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6190500259399414s
Forwarding 1 inputs ...
Total time = 0.8202531337738037s / 1 inps = 1.2191358482219028 ips
Post processing 1 inputs ...
Total time = 0.3301868438720703s / 1 inps = 3.028588263157591 ips
38%|███▊ | 473/1261 [1:27:37<1:38:23, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020331144332885742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.605228900909424s
Forwarding 1 inputs ...
Total time = 0.8789680004119873s / 1 inps = 1.1376978451221011 ips
Post processing 1 inputs ...
Total time = 0.32457995414733887s / 1 inps = 3.0809049888092073 ips
38%|███▊ | 474/1261 [1:27:45<1:39:47, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047276973724365234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9704670906066895s
Forwarding 1 inputs ...
Total time = 0.8492898941040039s / 1 inps = 1.1774542555401468 ips
Post processing 1 inputs ...
Total time = 0.35163307189941406s / 1 inps = 2.843873571385952 ips
38%|███▊ | 475/1261 [1:27:53<1:43:44, 7.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03317904472351074s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.512190103530884s
Forwarding 1 inputs ...
Total time = 1.259324073791504s / 1 inps = 0.7940767756382635 ips
Post processing 1 inputs ...
Total time = 0.28786492347717285s / 1 inps = 3.473851513136154 ips
38%|███▊ | 476/1261 [1:28:01<1:44:31, 7.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028332948684692383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.886522054672241s
Forwarding 1 inputs ...
Total time = 0.8088510036468506s / 1 inps = 1.236321640810631 ips
Post processing 1 inputs ...
Total time = 0.3170769214630127s / 1 inps = 3.153808846717502 ips
38%|███▊ | 477/1261 [1:28:09<1:44:46, 8.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03215193748474121s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.554503917694092s
Forwarding 1 inputs ...
Total time = 1.1571791172027588s / 1 inps = 0.8641704513448991 ips
Post processing 1 inputs ...
Total time = 0.6871798038482666s / 1 inps = 1.455223209995278 ips
38%|███▊ | 478/1261 [1:28:19<1:51:01, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025016069412231445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3462917804718018s
Forwarding 1 inputs ...
Total time = 0.8667840957641602s / 1 inps = 1.1536898345122453 ips
Post processing 1 inputs ...
Total time = 0.2955899238586426s / 1 inps = 3.383065251162693 ips
38%|███▊ | 479/1261 [1:28:27<1:48:30, 8.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07012510299682617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6696431636810303s
Forwarding 1 inputs ...
Total time = 1.48984694480896s / 1 inps = 0.6712098873540516 ips
Post processing 1 inputs ...
Total time = 0.34982800483703613s / 1 inps = 2.85854758959575 ips
38%|███▊ | 480/1261 [1:28:38<1:57:18, 9.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07009315490722656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9149398803710938s
Forwarding 1 inputs ...
Total time = 0.9152359962463379s / 1 inps = 1.0926143684266192 ips
Post processing 1 inputs ...
Total time = 0.4030909538269043s / 1 inps = 2.4808296750549776 ips
38%|███▊ | 481/1261 [1:28:48<2:01:17, 9.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029615163803100586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.712924003601074s
Forwarding 1 inputs ...
Total time = 0.9366858005523682s / 1 inps = 1.067593849944448 ips
Post processing 1 inputs ...
Total time = 0.41959095001220703s / 1 inps = 2.3832735190568513 ips
38%|███▊ | 482/1261 [1:28:57<2:00:58, 9.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13666296005249023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.662853956222534s
Forwarding 1 inputs ...
Total time = 1.1582159996032715s / 1 inps = 0.863396810562567 ips
Post processing 1 inputs ...
Total time = 0.4930908679962158s / 1 inps = 2.0280237678376034 ips
38%|███▊ | 483/1261 [1:29:11<2:17:09, 10.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05652213096618652s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8841910362243652s
Forwarding 1 inputs ...
Total time = 0.9985120296478271s / 1 inps = 1.0014901877073006 ips
Post processing 1 inputs ...
Total time = 0.3792898654937744s / 1 inps = 2.636505983881644 ips
38%|███▊ | 484/1261 [1:29:23<2:23:03, 11.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.16451287269592285s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.468587160110474s
Forwarding 1 inputs ...
Total time = 1.161309003829956s / 1 inps = 0.8610972589569489 ips
Post processing 1 inputs ...
Total time = 0.7616961002349854s / 1 inps = 1.3128595507991931 ips
38%|███▊ | 485/1261 [1:29:38<2:38:51, 12.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11143207550048828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3492660522460938s
Forwarding 1 inputs ...
Total time = 1.0252108573913574s / 1 inps = 0.9754091002747413 ips
Post processing 1 inputs ...
Total time = 0.49838709831237793s / 1 inps = 2.0064724857167597 ips
39%|███▊ | 486/1261 [1:29:50<2:39:07, 12.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07048416137695312s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.847846031188965s
Forwarding 1 inputs ...
Total time = 1.047896146774292s / 1 inps = 0.9542930404680566 ips
Post processing 1 inputs ...
Total time = 0.5242190361022949s / 1 inps = 1.9075995550166596 ips
39%|███▊ | 487/1261 [1:30:02<2:36:16, 12.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05474495887756348s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5500171184539795s
Forwarding 1 inputs ...
Total time = 1.2495920658111572s / 1 inps = 0.8002611631107488 ips
Post processing 1 inputs ...
Total time = 0.4173600673675537s / 1 inps = 2.396012647562031 ips
39%|███▊ | 488/1261 [1:30:15<2:38:21, 12.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02719402313232422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.078633785247803s
Forwarding 1 inputs ...
Total time = 1.1846461296081543s / 1 inps = 0.8441339358705965 ips
Post processing 1 inputs ...
Total time = 0.49506306648254395s / 1 inps = 2.01994466504049 ips
39%|███▉ | 489/1261 [1:30:26<2:36:11, 12.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08756804466247559s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6086020469665527s
Forwarding 1 inputs ...
Total time = 1.0749621391296387s / 1 inps = 0.9302653215392934 ips
Post processing 1 inputs ...
Total time = 0.4481499195098877s / 1 inps = 2.231396138804699 ips
39%|███▉ | 490/1261 [1:30:37<2:32:09, 11.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.044497013092041016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.586453914642334s
Forwarding 1 inputs ...
Total time = 1.081252098083496s / 1 inps = 0.9248536967211307 ips
Post processing 1 inputs ...
Total time = 0.4737429618835449s / 1 inps = 2.1108493011149347 ips
39%|███▉ | 491/1261 [1:30:50<2:33:26, 11.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11615419387817383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.372870922088623s
Forwarding 1 inputs ...
Total time = 1.047187089920044s / 1 inps = 0.9549391981869765 ips
Post processing 1 inputs ...
Total time = 0.37090611457824707s / 1 inps = 2.6961000660155956 ips
39%|███▉ | 492/1261 [1:30:59<2:22:35, 11.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06143689155578613s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6401422023773193s
Forwarding 1 inputs ...
Total time = 0.8849151134490967s / 1 inps = 1.1300518940199153 ips
Post processing 1 inputs ...
Total time = 0.3123478889465332s / 1 inps = 3.2015583757352593 ips
39%|███▉ | 493/1261 [1:31:08<2:14:07, 10.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05467510223388672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7918272018432617s
Forwarding 1 inputs ...
Total time = 1.1049959659576416s / 1 inps = 0.9049806793940219 ips
Post processing 1 inputs ...
Total time = 0.3721740245819092s / 1 inps = 2.6869150825971118 ips
39%|███▉ | 494/1261 [1:31:17<2:07:39, 9.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.013660192489624023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7716851234436035s
Forwarding 1 inputs ...
Total time = 0.8894228935241699s / 1 inps = 1.1243245561598816 ips
Post processing 1 inputs ...
Total time = 0.30624890327453613s / 1 inps = 3.2653178160234986 ips
39%|███▉ | 495/1261 [1:31:25<2:01:19, 9.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.5861020088195801s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6645331382751465s
Forwarding 1 inputs ...
Total time = 0.8849711418151855s / 1 inps = 1.1299803493579192 ips
Post processing 1 inputs ...
Total time = 0.2945749759674072s / 1 inps = 3.394721485475546 ips
39%|███▉ | 496/1261 [1:31:34<1:59:09, 9.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05839204788208008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.866401195526123s
Forwarding 1 inputs ...
Total time = 1.174422025680542s / 1 inps = 0.8514826681835521 ips
Post processing 1 inputs ...
Total time = 0.4871339797973633s / 1 inps = 2.0528233329483143 ips
39%|███▉ | 497/1261 [1:31:42<1:55:21, 9.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1343998908996582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4631149768829346s
Forwarding 1 inputs ...
Total time = 1.1749870777130127s / 1 inps = 0.8510731896272371 ips
Post processing 1 inputs ...
Total time = 0.37308692932128906s / 1 inps = 2.680340482094016 ips
39%|███▉ | 498/1261 [1:31:53<2:01:11, 9.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06997799873352051s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7402570247650146s
Forwarding 1 inputs ...
Total time = 0.9507899284362793s / 1 inps = 1.0517570391649544 ips
Post processing 1 inputs ...
Total time = 0.3468599319458008s / 1 inps = 2.883008119128204 ips
40%|███▉ | 499/1261 [1:32:03<2:03:35, 9.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.22498393058776855s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.86242413520813s
Forwarding 1 inputs ...
Total time = 1.1641528606414795s / 1 inps = 0.8589937230828717 ips
Post processing 1 inputs ...
Total time = 0.6924059391021729s / 1 inps = 1.4442394894773396 ips
40%|███▉ | 500/1261 [1:32:13<2:03:31, 9.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026040077209472656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0369482040405273s
Forwarding 1 inputs ...
Total time = 0.8538501262664795s / 1 inps = 1.1711657224583092 ips
Post processing 1 inputs ...
Total time = 0.347822904586792s / 1 inps = 2.875026304515466 ips
40%|███▉ | 501/1261 [1:32:22<1:58:56, 9.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023768901824951172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4282028675079346s
Forwarding 1 inputs ...
Total time = 1.115401029586792s / 1 inps = 0.8965385305144078 ips
Post processing 1 inputs ...
Total time = 0.2993490695953369s / 1 inps = 3.340581620486778 ips
40%|███▉ | 502/1261 [1:32:29<1:52:04, 8.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1560218334197998s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.228203058242798s
Forwarding 1 inputs ...
Total time = 0.9096310138702393s / 1 inps = 1.099346861256703 ips
Post processing 1 inputs ...
Total time = 0.34949278831481934s / 1 inps = 2.861289369722876 ips
40%|███▉ | 503/1261 [1:32:40<1:59:20, 9.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.17157196998596191s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.189826011657715s
Forwarding 1 inputs ...
Total time = 1.0416450500488281s / 1 inps = 0.9600199222884264 ips
Post processing 1 inputs ...
Total time = 0.48668384552001953s / 1 inps = 2.0547219908881593 ips
40%|███▉ | 504/1261 [1:32:51<2:06:32, 10.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07884097099304199s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.915626049041748s
Forwarding 1 inputs ...
Total time = 1.0495169162750244s / 1 inps = 0.9528193252465418 ips
Post processing 1 inputs ...
Total time = 0.49001193046569824s / 1 inps = 2.0407666381706635 ips
40%|████ | 505/1261 [1:33:03<2:10:25, 10.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05605292320251465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7291128635406494s
Forwarding 1 inputs ...
Total time = 1.0002720355987549s / 1 inps = 0.999728038384486 ips
Post processing 1 inputs ...
Total time = 0.44916486740112305s / 1 inps = 2.226354001785625 ips
40%|████ | 506/1261 [1:33:13<2:12:26, 10.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034951210021972656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.905888080596924s
Forwarding 1 inputs ...
Total time = 1.1225860118865967s / 1 inps = 0.8908003390487816 ips
Post processing 1 inputs ...
Total time = 0.4411489963531494s / 1 inps = 2.2668078319722125 ips
40%|████ | 507/1261 [1:33:25<2:15:18, 10.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024003028869628906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8673758506774902s
Forwarding 1 inputs ...
Total time = 1.174523115158081s / 1 inps = 0.8514093823222953 ips
Post processing 1 inputs ...
Total time = 0.48622894287109375s / 1 inps = 2.056644333213036 ips
40%|████ | 508/1261 [1:33:36<2:18:10, 11.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08191204071044922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.574574947357178s
Forwarding 1 inputs ...
Total time = 1.1482141017913818s / 1 inps = 0.8709177133775433 ips
Post processing 1 inputs ...
Total time = 0.6509640216827393s / 1 inps = 1.536183209350041 ips
40%|████ | 509/1261 [1:33:50<2:28:31, 11.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04749488830566406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.279546022415161s
Forwarding 1 inputs ...
Total time = 1.5632998943328857s / 1 inps = 0.6396725309232716 ips
Post processing 1 inputs ...
Total time = 0.6218118667602539s / 1 inps = 1.6082034670875145 ips
40%|████ | 510/1261 [1:34:06<2:43:21, 13.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07670402526855469s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.272722005844116s
Forwarding 1 inputs ...
Total time = 1.141906976699829s / 1 inps = 0.8757280762834573 ips
Post processing 1 inputs ...
Total time = 0.5630440711975098s / 1 inps = 1.7760599057071162 ips
41%|████ | 511/1261 [1:34:19<2:41:34, 12.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02745509147644043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.506906986236572s
Forwarding 1 inputs ...
Total time = 1.5181989669799805s / 1 inps = 0.6586751945887646 ips
Post processing 1 inputs ...
Total time = 0.7661499977111816s / 1 inps = 1.305227439779976 ips
41%|████ | 512/1261 [1:34:35<2:52:35, 13.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07755899429321289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.501024961471558s
Forwarding 1 inputs ...
Total time = 1.2248249053955078s / 1 inps = 0.8164432284115666 ips
Post processing 1 inputs ...
Total time = 0.5069079399108887s / 1 inps = 1.9727447949933352 ips
41%|████ | 513/1261 [1:34:50<2:59:02, 14.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08365511894226074s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.91805100440979s
Forwarding 1 inputs ...
Total time = 1.0074009895324707s / 1 inps = 0.992653382705227 ips
Post processing 1 inputs ...
Total time = 0.48189496994018555s / 1 inps = 2.0751409796290745 ips
41%|████ | 514/1261 [1:35:03<2:54:19, 14.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0730898380279541s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.813430070877075s
Forwarding 1 inputs ...
Total time = 1.0141000747680664s / 1 inps = 0.9860959730514849 ips
Post processing 1 inputs ...
Total time = 0.5153939723968506s / 1 inps = 1.9402632812127756 ips
41%|████ | 515/1261 [1:35:15<2:43:38, 13.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0305941104888916s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.0948991775512695s
Forwarding 1 inputs ...
Total time = 1.0406379699707031s / 1 inps = 0.9609489840430796 ips
Post processing 1 inputs ...
Total time = 0.4925861358642578s / 1 inps = 2.03010179782155 ips
41%|████ | 516/1261 [1:35:27<2:41:51, 13.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034242868423461914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9474709033966064s
Forwarding 1 inputs ...
Total time = 1.038161039352417s / 1 inps = 0.9632416957428676 ips
Post processing 1 inputs ...
Total time = 0.522036075592041s / 1 inps = 1.915576426142389 ips
41%|████ | 517/1261 [1:35:40<2:38:35, 12.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03628683090209961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.126583099365234s
Forwarding 1 inputs ...
Total time = 1.1121439933776855s / 1 inps = 0.8991641423723435 ips
Post processing 1 inputs ...
Total time = 0.49819183349609375s / 1 inps = 2.0072589166756 ips
41%|████ | 518/1261 [1:35:52<2:37:38, 12.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07221198081970215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.281328916549683s
Forwarding 1 inputs ...
Total time = 1.4083890914916992s / 1 inps = 0.7100310603377702 ips
Post processing 1 inputs ...
Total time = 0.6001291275024414s / 1 inps = 1.666308056337312 ips
41%|████ | 519/1261 [1:36:07<2:46:00, 13.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12808799743652344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.274235010147095s
Forwarding 1 inputs ...
Total time = 1.1457569599151611s / 1 inps = 0.8727854466396138 ips
Post processing 1 inputs ...
Total time = 0.8860170841217041s / 1 inps = 1.1286464086539432 ips
41%|████ | 520/1261 [1:36:26<3:06:13, 15.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.14979290962219238s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.356537103652954s
Forwarding 1 inputs ...
Total time = 1.2232470512390137s / 1 inps = 0.8174963503791902 ips
Post processing 1 inputs ...
Total time = 0.5352389812469482s / 1 inps = 1.8683243093959567 ips
41%|████▏ | 521/1261 [1:36:42<3:07:30, 15.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10178804397583008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.150393009185791s
Forwarding 1 inputs ...
Total time = 1.1006078720092773s / 1 inps = 0.9085888129933081 ips
Post processing 1 inputs ...
Total time = 0.5357670783996582s / 1 inps = 1.8664827316135406 ips
41%|████▏ | 522/1261 [1:36:55<3:01:13, 14.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09388494491577148s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.361670970916748s
Forwarding 1 inputs ...
Total time = 1.2682271003723145s / 1 inps = 0.7885023113813205 ips
Post processing 1 inputs ...
Total time = 0.5268161296844482s / 1 inps = 1.8981954872926516 ips
41%|████▏ | 523/1261 [1:37:09<2:56:52, 14.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05985307693481445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.011116981506348s
Forwarding 1 inputs ...
Total time = 1.1103930473327637s / 1 inps = 0.9005820077873011 ips
Post processing 1 inputs ...
Total time = 0.5660929679870605s / 1 inps = 1.7664942978462461 ips
42%|████▏ | 524/1261 [1:37:21<2:48:56, 13.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05229997634887695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.009328126907349s
Forwarding 1 inputs ...
Total time = 1.3121919631958008s / 1 inps = 0.762083618897141 ips
Post processing 1 inputs ...
Total time = 0.5675299167633057s / 1 inps = 1.7620216493663021 ips
42%|████▏ | 525/1261 [1:37:37<2:56:44, 14.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.3450169563293457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.786012887954712s
Forwarding 1 inputs ...
Total time = 1.2543020248413086s / 1 inps = 0.7972561473992021 ips
Post processing 1 inputs ...
Total time = 0.5616970062255859s / 1 inps = 1.7803192627278932 ips
42%|████▏ | 526/1261 [1:37:53<3:01:46, 14.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08816695213317871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9188668727874756s
Forwarding 1 inputs ...
Total time = 0.9622149467468262s / 1 inps = 1.0392688280107498 ips
Post processing 1 inputs ...
Total time = 0.5038740634918213s / 1 inps = 1.9846228898349154 ips
42%|████▏ | 527/1261 [1:38:05<2:52:55, 14.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07552313804626465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.192890167236328s
Forwarding 1 inputs ...
Total time = 0.9960651397705078s / 1 inps = 1.003950404519125 ips
Post processing 1 inputs ...
Total time = 0.4935169219970703s / 1 inps = 2.026272971458386 ips
42%|████▏ | 528/1261 [1:38:17<2:44:21, 13.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03478407859802246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9044158458709717s
Forwarding 1 inputs ...
Total time = 1.088629961013794s / 1 inps = 0.9185857782829561 ips
Post processing 1 inputs ...
Total time = 0.6246030330657959s / 1 inps = 1.6010168812207155 ips
42%|████▏ | 529/1261 [1:38:29<2:38:28, 12.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02591109275817871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.337139129638672s
Forwarding 1 inputs ...
Total time = 1.102726936340332s / 1 inps = 0.9068428157914992 ips
Post processing 1 inputs ...
Total time = 0.5553150177001953s / 1 inps = 1.8007796802280651 ips
42%|████▏ | 530/1261 [1:38:43<2:42:55, 13.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04196500778198242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.60676908493042s
Forwarding 1 inputs ...
Total time = 1.3090860843658447s / 1 inps = 0.7638917042529147 ips
Post processing 1 inputs ...
Total time = 0.460176944732666s / 1 inps = 2.173077142273908 ips
42%|████▏ | 531/1261 [1:38:57<2:44:53, 13.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04249000549316406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.016478061676025s
Forwarding 1 inputs ...
Total time = 1.235158920288086s / 1 inps = 0.8096124179443743 ips
Post processing 1 inputs ...
Total time = 0.5892608165740967s / 1 inps = 1.6970413980924437 ips
42%|████▏ | 532/1261 [1:39:11<2:45:40, 13.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10333490371704102s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 7.373887062072754s
Forwarding 1 inputs ...
Total time = 1.0633070468902588s / 1 inps = 0.9404621204426264 ips
Post processing 1 inputs ...
Total time = 0.6665360927581787s / 1 inps = 1.5002938488475868 ips
42%|████▏ | 533/1261 [1:39:29<3:01:22, 14.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1513528823852539s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.871927976608276s
Forwarding 1 inputs ...
Total time = 1.1460628509521484s / 1 inps = 0.87255249497809 ips
Post processing 1 inputs ...
Total time = 0.5056860446929932s / 1 inps = 1.977511561757868 ips
42%|████▏ | 534/1261 [1:39:45<3:04:49, 15.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031125783920288086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.056498050689697s
Forwarding 1 inputs ...
Total time = 1.014650821685791s / 1 inps = 0.9855607255494561 ips
Post processing 1 inputs ...
Total time = 0.759742021560669s / 1 inps = 1.3162362639173109 ips
42%|████▏ | 535/1261 [1:39:58<2:57:22, 14.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06436800956726074s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.251183986663818s
Forwarding 1 inputs ...
Total time = 1.1250741481781006s / 1 inps = 0.8888303065352265 ips
Post processing 1 inputs ...
Total time = 0.5232610702514648s / 1 inps = 1.9110919134867563 ips
43%|████▎ | 536/1261 [1:40:11<2:50:25, 14.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05387592315673828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.577270030975342s
Forwarding 1 inputs ...
Total time = 1.3824431896209717s / 1 inps = 0.7233570301533858 ips
Post processing 1 inputs ...
Total time = 0.9556071758270264s / 1 inps = 1.046455097131888 ips
43%|████▎ | 537/1261 [1:40:26<2:52:39, 14.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040802955627441406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.51535701751709s
Forwarding 1 inputs ...
Total time = 1.1464641094207764s / 1 inps = 0.8722471046260891 ips
Post processing 1 inputs ...
Total time = 0.5388898849487305s / 1 inps = 1.8556666731555727 ips
43%|████▎ | 538/1261 [1:40:40<2:52:22, 14.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10304808616638184s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.804001092910767s
Forwarding 1 inputs ...
Total time = 1.348473072052002s / 1 inps = 0.7415795099847841 ips
Post processing 1 inputs ...
Total time = 0.6054651737213135s / 1 inps = 1.651622658746488 ips
43%|████▎ | 539/1261 [1:40:55<2:54:57, 14.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08167219161987305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.0714099407196045s
Forwarding 1 inputs ...
Total time = 1.01584792137146s / 1 inps = 0.9843993170256585 ips
Post processing 1 inputs ...
Total time = 0.47452592849731445s / 1 inps = 2.1073664049648646 ips
43%|████▎ | 540/1261 [1:41:08<2:47:33, 13.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07767891883850098s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.0283708572387695s
Forwarding 1 inputs ...
Total time = 1.9075119495391846s / 1 inps = 0.5242431116835621 ips
Post processing 1 inputs ...
Total time = 0.5105199813842773s / 1 inps = 1.9587871904415872 ips
43%|████▎ | 541/1261 [1:41:22<2:49:22, 14.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03450798988342285s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.026591062545776s
Forwarding 1 inputs ...
Total time = 1.1671288013458252s / 1 inps = 0.8568034640623146 ips
Post processing 1 inputs ...
Total time = 0.5810480117797852s / 1 inps = 1.7210281762034425 ips
43%|████▎ | 542/1261 [1:41:36<2:47:12, 13.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06543517112731934s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.005336046218872s
Forwarding 1 inputs ...
Total time = 1.38120698928833s / 1 inps = 0.7240044452100928 ips
Post processing 1 inputs ...
Total time = 1.2396271228790283s / 1 inps = 0.806694191780432 ips
43%|████▎ | 543/1261 [1:41:52<2:53:55, 14.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07100796699523926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.495737791061401s
Forwarding 1 inputs ...
Total time = 1.0582959651947021s / 1 inps = 0.9449152532826892 ips
Post processing 1 inputs ...
Total time = 0.5948388576507568s / 1 inps = 1.6811275644455668 ips
43%|████▎ | 544/1261 [1:42:07<2:53:45, 14.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0647740364074707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.985896110534668s
Forwarding 1 inputs ...
Total time = 1.2858221530914307s / 1 inps = 0.7777125301471558 ips
Post processing 1 inputs ...
Total time = 0.6050820350646973s / 1 inps = 1.6526684681575068 ips
43%|████▎ | 545/1261 [1:42:20<2:48:22, 14.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028680086135864258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.743730068206787s
Forwarding 1 inputs ...
Total time = 1.3121130466461182s / 1 inps = 0.7621294541320903 ips
Post processing 1 inputs ...
Total time = 0.914496898651123s / 1 inps = 1.0934974207949677 ips
43%|████▎ | 546/1261 [1:42:33<2:46:37, 13.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048316001892089844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.8222668170928955s
Forwarding 1 inputs ...
Total time = 1.1258881092071533s / 1 inps = 0.8881877264910424 ips
Post processing 1 inputs ...
Total time = 0.7717950344085693s / 1 inps = 1.2956807901288265 ips
43%|████▎ | 547/1261 [1:42:48<2:47:32, 14.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06624007225036621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.153864860534668s
Forwarding 1 inputs ...
Total time = 1.0245718955993652s / 1 inps = 0.9760174022878201 ips
Post processing 1 inputs ...
Total time = 0.46178722381591797s / 1 inps = 2.1654994950631843 ips
43%|████▎ | 548/1261 [1:43:00<2:40:21, 13.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.14096903800964355s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 8.235688924789429s
Forwarding 1 inputs ...
Total time = 1.6633269786834717s / 1 inps = 0.6012047016705657 ips
Post processing 1 inputs ...
Total time = 0.4972410202026367s / 1 inps = 2.011097152830388 ips
44%|████▎ | 549/1261 [1:43:20<3:02:28, 15.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07086896896362305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.562273025512695s
Forwarding 1 inputs ...
Total time = 1.238008975982666s / 1 inps = 0.8077485861572634 ips
Post processing 1 inputs ...
Total time = 0.5601959228515625s / 1 inps = 1.785089750224716 ips
44%|████▎ | 550/1261 [1:43:38<3:11:43, 16.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1106879711151123s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.13510799407959s
Forwarding 1 inputs ...
Total time = 1.147702932357788s / 1 inps = 0.8713056068835217 ips
Post processing 1 inputs ...
Total time = 0.4975700378417969s / 1 inps = 2.0097673170544716 ips
44%|████▎ | 551/1261 [1:43:54<3:11:57, 16.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08656907081604004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.1498730182647705s
Forwarding 1 inputs ...
Total time = 1.1584868431091309s / 1 inps = 0.8631949563762105 ips
Post processing 1 inputs ...
Total time = 0.5071120262145996s / 1 inps = 1.9719508674732555 ips
44%|████▍ | 552/1261 [1:44:06<2:58:36, 15.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02973794937133789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.390726089477539s
Forwarding 1 inputs ...
Total time = 1.2197229862213135s / 1 inps = 0.8198582885594273 ips
Post processing 1 inputs ...
Total time = 0.5666258335113525s / 1 inps = 1.7648330535920838 ips
44%|████▍ | 553/1261 [1:44:20<2:54:20, 14.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03577089309692383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.543176174163818s
Forwarding 1 inputs ...
Total time = 1.1606969833374023s / 1 inps = 0.8615513043935521 ips
Post processing 1 inputs ...
Total time = 0.621068000793457s / 1 inps = 1.6101296455821767 ips
44%|████▍ | 554/1261 [1:44:36<2:56:00, 14.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02619314193725586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.4504640102386475s
Forwarding 1 inputs ...
Total time = 1.3121261596679688s / 1 inps = 0.7621218376234861 ips
Post processing 1 inputs ...
Total time = 0.5577330589294434s / 1 inps = 1.7929724336575612 ips
44%|████▍ | 555/1261 [1:44:49<2:51:06, 14.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05042314529418945s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9999611377716064s
Forwarding 1 inputs ...
Total time = 1.169917106628418s / 1 inps = 0.8547614137226339 ips
Post processing 1 inputs ...
Total time = 0.6446268558502197s / 1 inps = 1.551285043315589 ips
44%|████▍ | 556/1261 [1:45:01<2:42:03, 13.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019860029220581055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.010365962982178s
Forwarding 1 inputs ...
Total time = 1.031742811203003s / 1 inps = 0.9692337946450132 ips
Post processing 1 inputs ...
Total time = 0.5085101127624512s / 1 inps = 1.9665292290207543 ips
44%|████▍ | 557/1261 [1:45:13<2:34:42, 13.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02863788604736328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.951546907424927s
Forwarding 1 inputs ...
Total time = 1.5486750602722168s / 1 inps = 0.6457132458917664 ips
Post processing 1 inputs ...
Total time = 0.5765759944915771s / 1 inps = 1.7343767509464156 ips
44%|████▍ | 558/1261 [1:45:26<2:34:11, 13.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.11525702476501465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.684872150421143s
Forwarding 1 inputs ...
Total time = 1.0782649517059326s / 1 inps = 0.927415843775587 ips
Post processing 1 inputs ...
Total time = 0.526313066482544s / 1 inps = 1.900009830048874 ips
44%|████▍ | 559/1261 [1:45:42<2:43:47, 14.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04780006408691406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.151794910430908s
Forwarding 1 inputs ...
Total time = 1.3277409076690674s / 1 inps = 0.753158989245547 ips
Post processing 1 inputs ...
Total time = 0.6350669860839844s / 1 inps = 1.5746370413085133 ips
44%|████▍ | 560/1261 [1:45:55<2:40:48, 13.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06511092185974121s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.175433874130249s
Forwarding 1 inputs ...
Total time = 0.9875810146331787s / 1 inps = 1.0125751560457388 ips
Post processing 1 inputs ...
Total time = 0.489699125289917s / 1 inps = 2.0420702189491746 ips
44%|████▍ | 561/1261 [1:46:07<2:34:41, 13.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018479108810424805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.95832896232605s
Forwarding 1 inputs ...
Total time = 1.034877061843872s / 1 inps = 0.966298352596848 ips
Post processing 1 inputs ...
Total time = 0.5360498428344727s / 1 inps = 1.8654981684395175 ips
45%|████▍ | 562/1261 [1:46:19<2:27:19, 12.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03603506088256836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9066760540008545s
Forwarding 1 inputs ...
Total time = 1.0287339687347412s / 1 inps = 0.9720686109256393 ips
Post processing 1 inputs ...
Total time = 0.4671001434326172s / 1 inps = 2.140868535494804 ips
45%|████▍ | 563/1261 [1:46:30<2:21:36, 12.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024181842803955078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8502349853515625s
Forwarding 1 inputs ...
Total time = 1.013936996459961s / 1 inps = 0.9862545735005032 ips
Post processing 1 inputs ...
Total time = 0.44129109382629395s / 1 inps = 2.2660779109075593 ips
45%|████▍ | 564/1261 [1:46:41<2:17:29, 11.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03656792640686035s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7550950050354004s
Forwarding 1 inputs ...
Total time = 0.9917848110198975s / 1 inps = 1.0082832373402195 ips
Post processing 1 inputs ...
Total time = 0.4818711280822754s / 1 inps = 2.0752436527578357 ips
45%|████▍ | 565/1261 [1:46:52<2:14:13, 11.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048161983489990234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.918455123901367s
Forwarding 1 inputs ...
Total time = 1.0194931030273438s / 1 inps = 0.9808796126531315 ips
Post processing 1 inputs ...
Total time = 0.4685189723968506s / 1 inps = 2.1343852840882778 ips
45%|████▍ | 566/1261 [1:47:03<2:11:40, 11.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048547983169555664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.839481830596924s
Forwarding 1 inputs ...
Total time = 1.0137050151824951s / 1 inps = 0.9864802728829078 ips
Post processing 1 inputs ...
Total time = 0.40605616569519043s / 1 inps = 2.4627134974984193 ips
45%|████▍ | 567/1261 [1:47:14<2:10:18, 11.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03491806983947754s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.011691093444824s
Forwarding 1 inputs ...
Total time = 1.0158538818359375s / 1 inps = 0.9843935411190387 ips
Post processing 1 inputs ...
Total time = 0.4554321765899658s / 1 inps = 2.195716621270523 ips
45%|████▌ | 568/1261 [1:47:25<2:09:41, 11.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04024505615234375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8882648944854736s
Forwarding 1 inputs ...
Total time = 1.0186610221862793s / 1 inps = 0.9816808322102789 ips
Post processing 1 inputs ...
Total time = 0.4864778518676758s / 1 inps = 2.0555920401325993 ips
45%|████▌ | 569/1261 [1:47:36<2:09:09, 11.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02215099334716797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.775389909744263s
Forwarding 1 inputs ...
Total time = 1.1716358661651611s / 1 inps = 0.8535075008185468 ips
Post processing 1 inputs ...
Total time = 0.6328840255737305s / 1 inps = 1.5800683215119338 ips
45%|████▌ | 570/1261 [1:47:48<2:13:06, 11.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037130117416381836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7537100315093994s
Forwarding 1 inputs ...
Total time = 1.13850998878479s / 1 inps = 0.8783409981913015 ips
Post processing 1 inputs ...
Total time = 0.5240910053253174s / 1 inps = 1.9080655646422955 ips
45%|████▌ | 571/1261 [1:48:00<2:14:44, 11.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08994007110595703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.995439052581787s
Forwarding 1 inputs ...
Total time = 1.066046953201294s / 1 inps = 0.9380449866650266 ips
Post processing 1 inputs ...
Total time = 0.54380202293396s / 1 inps = 1.8389045237543027 ips
45%|████▌ | 572/1261 [1:48:12<2:13:25, 11.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028037071228027344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.9232211112976074s
Forwarding 1 inputs ...
Total time = 1.007807970046997s / 1 inps = 0.9922525220289408 ips
Post processing 1 inputs ...
Total time = 0.44687795639038086s / 1 inps = 2.2377474334993295 ips
45%|████▌ | 573/1261 [1:48:23<2:11:22, 11.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.039235830307006836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.047715187072754s
Forwarding 1 inputs ...
Total time = 0.7685830593109131s / 1 inps = 1.3010955522446304 ips
Post processing 1 inputs ...
Total time = 0.30519700050354004s / 1 inps = 3.2765721758408985 ips
46%|████▌ | 574/1261 [1:48:33<2:06:42, 11.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05820798873901367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.327188014984131s
Forwarding 1 inputs ...
Total time = 0.7864120006561279s / 1 inps = 1.2715980925592043 ips
Post processing 1 inputs ...
Total time = 0.3330249786376953s / 1 inps = 3.0027777618684888 ips
46%|████▌ | 575/1261 [1:48:40<1:53:11, 9.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02909111976623535s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3634328842163086s
Forwarding 1 inputs ...
Total time = 0.7993350028991699s / 1 inps = 1.2510399224017748 ips
Post processing 1 inputs ...
Total time = 0.294036865234375s / 1 inps = 3.4009340944473276 ips
46%|████▌ | 576/1261 [1:48:47<1:43:36, 9.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022732973098754883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3662068843841553s
Forwarding 1 inputs ...
Total time = 0.8136711120605469s / 1 inps = 1.2289977918321229 ips
Post processing 1 inputs ...
Total time = 0.30324411392211914s / 1 inps = 3.297673241093232 ips
46%|████▌ | 577/1261 [1:48:55<1:36:53, 8.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026131868362426758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.377164840698242s
Forwarding 1 inputs ...
Total time = 0.7799859046936035s / 1 inps = 1.2820744502976924 ips
Post processing 1 inputs ...
Total time = 0.31844186782836914s / 1 inps = 3.140290586848871 ips
46%|████▌ | 578/1261 [1:49:02<1:31:57, 8.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03020501136779785s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4142799377441406s
Forwarding 1 inputs ...
Total time = 0.7883179187774658s / 1 inps = 1.2685237468035913 ips
Post processing 1 inputs ...
Total time = 0.3106880187988281s / 1 inps = 3.2186629013444654 ips
46%|████▌ | 579/1261 [1:49:09<1:28:55, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03617691993713379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.357638120651245s
Forwarding 1 inputs ...
Total time = 0.78118896484375s / 1 inps = 1.2801000078131104 ips
Post processing 1 inputs ...
Total time = 0.31206798553466797s / 1 inps = 3.2044299522961124 ips
46%|████▌ | 580/1261 [1:49:16<1:26:27, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.016412019729614258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4067609310150146s
Forwarding 1 inputs ...
Total time = 0.799293041229248s / 1 inps = 1.2511056000964063 ips
Post processing 1 inputs ...
Total time = 0.3097372055053711s / 1 inps = 3.2285433658781404 ips
46%|████▌ | 581/1261 [1:49:23<1:25:00, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02577495574951172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.409058094024658s
Forwarding 1 inputs ...
Total time = 0.8214900493621826s / 1 inps = 1.217300198312098 ips
Post processing 1 inputs ...
Total time = 0.2836909294128418s / 1 inps = 3.524962895605125 ips
46%|████▌ | 582/1261 [1:49:31<1:26:15, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.032582998275756836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3694021701812744s
Forwarding 1 inputs ...
Total time = 0.7944509983062744s / 1 inps = 1.2587308746945307 ips
Post processing 1 inputs ...
Total time = 0.29959797859191895s / 1 inps = 3.3378062318707946 ips
46%|████▌ | 583/1261 [1:49:38<1:24:37, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036913156509399414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4087419509887695s
Forwarding 1 inputs ...
Total time = 0.8124499320983887s / 1 inps = 1.2308450779449371 ips
Post processing 1 inputs ...
Total time = 0.31250500679016113s / 1 inps = 3.1999487312901636 ips
46%|████▋ | 584/1261 [1:49:46<1:23:31, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06820821762084961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.423140048980713s
Forwarding 1 inputs ...
Total time = 0.854097843170166s / 1 inps = 1.1708260452787085 ips
Post processing 1 inputs ...
Total time = 0.3833351135253906s / 1 inps = 2.608683537501617 ips
46%|████▋ | 585/1261 [1:49:53<1:23:30, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03246808052062988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3704259395599365s
Forwarding 1 inputs ...
Total time = 0.8292880058288574s / 1 inps = 1.2058536877071062 ips
Post processing 1 inputs ...
Total time = 0.28856801986694336s / 1 inps = 3.4653874689963664 ips
46%|████▋ | 586/1261 [1:50:00<1:22:49, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030157089233398438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.323518991470337s
Forwarding 1 inputs ...
Total time = 0.7998130321502686s / 1 inps = 1.250292205556511 ips
Post processing 1 inputs ...
Total time = 0.28935694694519043s / 1 inps = 3.4559391456028132 ips
47%|████▋ | 587/1261 [1:50:07<1:21:54, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025382041931152344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.364629030227661s
Forwarding 1 inputs ...
Total time = 0.7683379650115967s / 1 inps = 1.3015105923926418 ips
Post processing 1 inputs ...
Total time = 0.29740118980407715s / 1 inps = 3.3624613292864867 ips
47%|████▋ | 588/1261 [1:50:14<1:21:15, 7.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019657135009765625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4750378131866455s
Forwarding 1 inputs ...
Total time = 0.8509600162506104s / 1 inps = 1.17514334504936 ips
Post processing 1 inputs ...
Total time = 0.31150293350219727s / 1 inps = 3.210242641239673 ips
47%|████▋ | 589/1261 [1:50:22<1:21:23, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03636789321899414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.310063123703003s
Forwarding 1 inputs ...
Total time = 0.857429027557373s / 1 inps = 1.1662772869362499 ips
Post processing 1 inputs ...
Total time = 0.3191990852355957s / 1 inps = 3.1328410583066555 ips
47%|████▋ | 590/1261 [1:50:29<1:21:28, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0262451171875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.37636399269104s
Forwarding 1 inputs ...
Total time = 0.797572135925293s / 1 inps = 1.253805085404423 ips
Post processing 1 inputs ...
Total time = 0.31868600845336914s / 1 inps = 3.137884856800427 ips
47%|████▋ | 591/1261 [1:50:36<1:21:15, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036099910736083984s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.349768877029419s
Forwarding 1 inputs ...
Total time = 0.8424179553985596s / 1 inps = 1.1870592187542894 ips
Post processing 1 inputs ...
Total time = 0.2876861095428467s / 1 inps = 3.4760107173372736 ips
47%|████▋ | 592/1261 [1:50:44<1:21:08, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02559804916381836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.397562026977539s
Forwarding 1 inputs ...
Total time = 0.8012259006500244s / 1 inps = 1.2480874609628978 ips
Post processing 1 inputs ...
Total time = 0.2953782081604004s / 1 inps = 3.385490101751061 ips
47%|████▋ | 593/1261 [1:50:51<1:20:58, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026519060134887695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.40939998626709s
Forwarding 1 inputs ...
Total time = 0.8763749599456787s / 1 inps = 1.1410640943711856 ips
Post processing 1 inputs ...
Total time = 0.3266439437866211s / 1 inps = 3.061437442885046 ips
47%|████▋ | 594/1261 [1:50:58<1:21:04, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02511882781982422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3524370193481445s
Forwarding 1 inputs ...
Total time = 0.8678829669952393s / 1 inps = 1.152229088516592 ips
Post processing 1 inputs ...
Total time = 0.28475284576416016s / 1 inps = 3.51181740542894 ips
47%|████▋ | 595/1261 [1:51:06<1:21:26, 7.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026108980178833008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4002041816711426s
Forwarding 1 inputs ...
Total time = 0.8345141410827637s / 1 inps = 1.1983020427940527 ips
Post processing 1 inputs ...
Total time = 0.3092789649963379s / 1 inps = 3.2333269092899375 ips
47%|████▋ | 596/1261 [1:51:13<1:21:02, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03331112861633301s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4632580280303955s
Forwarding 1 inputs ...
Total time = 0.8304040431976318s / 1 inps = 1.2042330576201268 ips
Post processing 1 inputs ...
Total time = 0.3002300262451172s / 1 inps = 3.3307794443703265 ips
47%|████▋ | 597/1261 [1:51:20<1:21:26, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021722078323364258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3897218704223633s
Forwarding 1 inputs ...
Total time = 0.8399779796600342s / 1 inps = 1.1905073992591233 ips
Post processing 1 inputs ...
Total time = 0.29822492599487305s / 1 inps = 3.3531737719911163 ips
47%|████▋ | 598/1261 [1:51:28<1:21:02, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029610872268676758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3589279651641846s
Forwarding 1 inputs ...
Total time = 0.8022379875183105s / 1 inps = 1.2465128996115702 ips
Post processing 1 inputs ...
Total time = 0.286823034286499s / 1 inps = 3.486470333484896 ips
48%|████▊ | 599/1261 [1:51:35<1:20:43, 7.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026488065719604492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4058470726013184s
Forwarding 1 inputs ...
Total time = 0.7957890033721924s / 1 inps = 1.2566144992736192 ips
Post processing 1 inputs ...
Total time = 0.3000359535217285s / 1 inps = 3.332933897628973 ips
48%|████▊ | 600/1261 [1:51:42<1:20:23, 7.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029256820678710938s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.359761953353882s
Forwarding 1 inputs ...
Total time = 0.8181672096252441s / 1 inps = 1.2222440452704566 ips
Post processing 1 inputs ...
Total time = 0.3179740905761719s / 1 inps = 3.144910323315938 ips
48%|████▊ | 601/1261 [1:51:49<1:20:04, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09979987144470215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 5.022319078445435s
Forwarding 1 inputs ...
Total time = 1.486097812652588s / 1 inps = 0.6729032177330677 ips
Post processing 1 inputs ...
Total time = 0.32744383811950684s / 1 inps = 3.053958827696831 ips
48%|████▊ | 602/1261 [1:52:01<1:32:33, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06856298446655273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.977893829345703s
Forwarding 1 inputs ...
Total time = 1.0894601345062256s / 1 inps = 0.9178858118137829 ips
Post processing 1 inputs ...
Total time = 0.3352839946746826s / 1 inps = 2.982546187360581 ips
48%|████▊ | 603/1261 [1:52:11<1:38:35, 8.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08607006072998047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.035573959350586s
Forwarding 1 inputs ...
Total time = 1.0064210891723633s / 1 inps = 0.993619878158909 ips
Post processing 1 inputs ...
Total time = 0.34421491622924805s / 1 inps = 2.9051617255714666 ips
48%|████▊ | 604/1261 [1:52:22<1:44:36, 9.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05608391761779785s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.563110113143921s
Forwarding 1 inputs ...
Total time = 0.9287869930267334s / 1 inps = 1.0766731312000801 ips
Post processing 1 inputs ...
Total time = 0.3370370864868164s / 1 inps = 2.9670325317125483 ips
48%|████▊ | 605/1261 [1:52:30<1:39:30, 9.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05842900276184082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.551683187484741s
Forwarding 1 inputs ...
Total time = 0.8287298679351807s / 1 inps = 1.2066658131817392 ips
Post processing 1 inputs ...
Total time = 0.31412386894226074s / 1 inps = 3.1834575429344736 ips
48%|████▊ | 606/1261 [1:52:38<1:35:21, 8.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05011415481567383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6958119869232178s
Forwarding 1 inputs ...
Total time = 0.8814749717712402s / 1 inps = 1.1344621594764002 ips
Post processing 1 inputs ...
Total time = 0.30844616889953613s / 1 inps = 3.242056802221815 ips
48%|████▊ | 607/1261 [1:52:46<1:33:42, 8.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02641892433166504s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.573306083679199s
Forwarding 1 inputs ...
Total time = 0.9216279983520508s / 1 inps = 1.085036480866559 ips
Post processing 1 inputs ...
Total time = 0.3397560119628906s / 1 inps = 2.943288609442542 ips
48%|████▊ | 608/1261 [1:52:54<1:33:18, 8.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.039346933364868164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.507383108139038s
Forwarding 1 inputs ...
Total time = 0.9791069030761719s / 1 inps = 1.0213389333260605 ips
Post processing 1 inputs ...
Total time = 0.353330135345459s / 1 inps = 2.8302142952575418 ips
48%|████▊ | 609/1261 [1:53:02<1:31:02, 8.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07730484008789062s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.74922513961792s
Forwarding 1 inputs ...
Total time = 0.8269078731536865s / 1 inps = 1.2093245601667444 ips
Post processing 1 inputs ...
Total time = 0.31784892082214355s / 1 inps = 3.1461487974016524 ips
48%|████▊ | 610/1261 [1:53:11<1:30:41, 8.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05952310562133789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1134209632873535s
Forwarding 1 inputs ...
Total time = 0.899616003036499s / 1 inps = 1.1115853837911642 ips
Post processing 1 inputs ...
Total time = 0.32161378860473633s / 1 inps = 3.1093194242023032 ips
48%|████▊ | 611/1261 [1:53:20<1:32:40, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030645132064819336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7983951568603516s
Forwarding 1 inputs ...
Total time = 1.4103360176086426s / 1 inps = 0.7090508839840836 ips
Post processing 1 inputs ...
Total time = 1.057704210281372s / 1 inps = 0.9454439060368102 ips
49%|████▊ | 612/1261 [1:53:30<1:36:54, 8.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024173974990844727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.502948045730591s
Forwarding 1 inputs ...
Total time = 0.9503381252288818s / 1 inps = 1.0522570582540371 ips
Post processing 1 inputs ...
Total time = 0.47078895568847656s / 1 inps = 2.124094008402578 ips
49%|████▊ | 613/1261 [1:53:39<1:36:45, 8.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0710451602935791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.90083384513855s
Forwarding 1 inputs ...
Total time = 1.0289759635925293s / 1 inps = 0.9718399995551269 ips
Post processing 1 inputs ...
Total time = 0.36389899253845215s / 1 inps = 2.7480153023351197 ips
49%|████▊ | 614/1261 [1:53:48<1:36:52, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.055094003677368164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0242199897766113s
Forwarding 1 inputs ...
Total time = 1.0038070678710938s / 1 inps = 0.9962073709252038 ips
Post processing 1 inputs ...
Total time = 0.33805298805236816s / 1 inps = 2.9581161396067555 ips
49%|████▉ | 615/1261 [1:53:56<1:36:13, 8.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06476807594299316s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0661470890045166s
Forwarding 1 inputs ...
Total time = 1.4235551357269287s / 1 inps = 0.7024666448829583 ips
Post processing 1 inputs ...
Total time = 0.5115609169006348s / 1 inps = 1.9548014067584434 ips
49%|████▉ | 616/1261 [1:54:07<1:40:12, 9.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0751640796661377s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8164639472961426s
Forwarding 1 inputs ...
Total time = 0.8634040355682373s / 1 inps = 1.158206307597189 ips
Post processing 1 inputs ...
Total time = 0.4045748710632324s / 1 inps = 2.471730380515172 ips
49%|████▉ | 617/1261 [1:54:15<1:37:13, 9.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05576777458190918s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.62335205078125s
Forwarding 1 inputs ...
Total time = 0.7878999710083008s / 1 inps = 1.2691966452546863 ips
Post processing 1 inputs ...
Total time = 0.33280205726623535s / 1 inps = 3.004789117634627 ips
49%|████▉ | 618/1261 [1:54:23<1:33:45, 8.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026405811309814453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4024159908294678s
Forwarding 1 inputs ...
Total time = 0.838144063949585s / 1 inps = 1.193112309699721 ips
Post processing 1 inputs ...
Total time = 0.31673502922058105s / 1 inps = 3.157213152144213 ips
49%|████▉ | 619/1261 [1:54:30<1:28:58, 8.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023333072662353516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5979669094085693s
Forwarding 1 inputs ...
Total time = 0.9280149936676025s / 1 inps = 1.0775687966504786 ips
Post processing 1 inputs ...
Total time = 0.3192780017852783s / 1 inps = 3.132066708036223 ips
49%|████▉ | 620/1261 [1:54:38<1:26:53, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0392148494720459s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.622610092163086s
Forwarding 1 inputs ...
Total time = 0.9582469463348389s / 1 inps = 1.0435723315632373 ips
Post processing 1 inputs ...
Total time = 0.3409128189086914s / 1 inps = 2.933301256318659 ips
49%|████▉ | 621/1261 [1:54:46<1:26:26, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.3129160404205322s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.033096075057983s
Forwarding 1 inputs ...
Total time = 1.3030149936676025s / 1 inps = 0.7674508772806177 ips
Post processing 1 inputs ...
Total time = 0.3815610408782959s / 1 inps = 2.620812642973588 ips
49%|████▉ | 622/1261 [1:55:04<1:58:34, 11.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08524084091186523s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.980123996734619s
Forwarding 1 inputs ...
Total time = 0.9220612049102783s / 1 inps = 1.0845267045990787 ips
Post processing 1 inputs ...
Total time = 0.3216118812561035s / 1 inps = 3.1093378643051053 ips
49%|████▉ | 623/1261 [1:55:14<1:52:07, 10.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09245705604553223s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.882668972015381s
Forwarding 1 inputs ...
Total time = 0.8447310924530029s / 1 inps = 1.1838086805779977 ips
Post processing 1 inputs ...
Total time = 0.34151506423950195s / 1 inps = 2.9281285211439676 ips
49%|████▉ | 624/1261 [1:55:23<1:49:07, 10.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09325098991394043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.92773699760437s
Forwarding 1 inputs ...
Total time = 0.8449909687042236s / 1 inps = 1.183444601228673 ips
Post processing 1 inputs ...
Total time = 0.35092997550964355s / 1 inps = 2.8495713384065704 ips
50%|████▉ | 625/1261 [1:55:32<1:44:09, 9.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03839993476867676s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 6.034453868865967s
Forwarding 1 inputs ...
Total time = 1.39143705368042s / 1 inps = 0.7186814504867112 ips
Post processing 1 inputs ...
Total time = 1.7359039783477783s / 1 inps = 0.5760687298797444 ips
50%|████▉ | 626/1261 [1:55:47<1:59:49, 11.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026196956634521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.470555067062378s
Forwarding 1 inputs ...
Total time = 0.8629539012908936s / 1 inps = 1.1588104515248139 ips
Post processing 1 inputs ...
Total time = 0.3216550350189209s / 1 inps = 3.108920710478468 ips
50%|████▉ | 627/1261 [1:55:56<1:51:31, 10.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02955794334411621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.398252010345459s
Forwarding 1 inputs ...
Total time = 0.8683919906616211s / 1 inps = 1.151553688603355 ips
Post processing 1 inputs ...
Total time = 0.3053090572357178s / 1 inps = 3.2753695846891864 ips
50%|████▉ | 628/1261 [1:56:03<1:41:26, 9.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03987002372741699s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.561065912246704s
Forwarding 1 inputs ...
Total time = 0.8655478954315186s / 1 inps = 1.1553375674276816 ips
Post processing 1 inputs ...
Total time = 0.3272230625152588s / 1 inps = 3.056019316955598 ips
50%|████▉ | 629/1261 [1:56:11<1:34:53, 9.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026573896408081055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.590280055999756s
Forwarding 1 inputs ...
Total time = 0.7978861331939697s / 1 inps = 1.2533116674141966 ips
Post processing 1 inputs ...
Total time = 0.3365311622619629s / 1 inps = 2.971493020968974 ips
50%|████▉ | 630/1261 [1:56:18<1:30:53, 8.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02923297882080078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4666740894317627s
Forwarding 1 inputs ...
Total time = 0.8166298866271973s / 1 inps = 1.2245449454833799 ips
Post processing 1 inputs ...
Total time = 0.30858802795410156s / 1 inps = 3.240566416752684 ips
50%|█████ | 631/1261 [1:56:26<1:27:11, 8.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028656959533691406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.367027997970581s
Forwarding 1 inputs ...
Total time = 0.7987861633300781s / 1 inps = 1.2518995019030836 ips
Post processing 1 inputs ...
Total time = 0.30038905143737793s / 1 inps = 3.329016138287816 ips
50%|█████ | 632/1261 [1:56:33<1:23:25, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03127408027648926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.587038040161133s
Forwarding 1 inputs ...
Total time = 0.7680511474609375s / 1 inps = 1.3019966226283899 ips
Post processing 1 inputs ...
Total time = 0.33326196670532227s / 1 inps = 3.000642437197829 ips
50%|█████ | 633/1261 [1:56:41<1:21:51, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0261080265045166s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.475375175476074s
Forwarding 1 inputs ...
Total time = 0.8712670803070068s / 1 inps = 1.1477536826567942 ips
Post processing 1 inputs ...
Total time = 0.3248140811920166s / 1 inps = 3.0786842624868886 ips
50%|█████ | 634/1261 [1:56:48<1:21:06, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028860092163085938s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.464350938796997s
Forwarding 1 inputs ...
Total time = 0.8590829372406006s / 1 inps = 1.1640319655422666 ips
Post processing 1 inputs ...
Total time = 0.3107740879058838s / 1 inps = 3.217771490340097 ips
50%|█████ | 635/1261 [1:56:56<1:20:16, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03393697738647461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.524099826812744s
Forwarding 1 inputs ...
Total time = 1.1642000675201416s / 1 inps = 0.8589588919455197 ips
Post processing 1 inputs ...
Total time = 0.37597084045410156s / 1 inps = 2.6597807393578434 ips
50%|█████ | 636/1261 [1:57:04<1:20:52, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10581398010253906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.2322468757629395s
Forwarding 1 inputs ...
Total time = 0.9079740047454834s / 1 inps = 1.1013531166900672 ips
Post processing 1 inputs ...
Total time = 0.32198596000671387s / 1 inps = 3.1057254793940348 ips
51%|█████ | 637/1261 [1:57:12<1:23:41, 8.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048621177673339844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4283101558685303s
Forwarding 1 inputs ...
Total time = 0.8265359401702881s / 1 inps = 1.2098687442363047 ips
Post processing 1 inputs ...
Total time = 0.29764485359191895s / 1 inps = 3.3597086861479335 ips
51%|█████ | 638/1261 [1:57:20<1:22:05, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031043052673339844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3641879558563232s
Forwarding 1 inputs ...
Total time = 0.7832109928131104s / 1 inps = 1.276795153765953 ips
Post processing 1 inputs ...
Total time = 0.3055260181427002s / 1 inps = 3.273043670974483 ips
51%|█████ | 639/1261 [1:57:27<1:19:30, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05253291130065918s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.496509075164795s
Forwarding 1 inputs ...
Total time = 0.8067841529846191s / 1 inps = 1.2394888971239677 ips
Post processing 1 inputs ...
Total time = 0.294950008392334s / 1 inps = 3.39040505694724 ips
51%|█████ | 640/1261 [1:57:35<1:19:12, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025377988815307617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.369986057281494s
Forwarding 1 inputs ...
Total time = 0.8096878528594971s / 1 inps = 1.2350438461789883 ips
Post processing 1 inputs ...
Total time = 0.3027949333190918s / 1 inps = 3.302565168572945 ips
51%|█████ | 641/1261 [1:57:42<1:17:59, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037197113037109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.44667911529541s
Forwarding 1 inputs ...
Total time = 0.8456711769104004s / 1 inps = 1.1824927079262995 ips
Post processing 1 inputs ...
Total time = 0.35033702850341797s / 1 inps = 2.8543942507928297 ips
51%|█████ | 642/1261 [1:57:49<1:17:25, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028251171112060547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3922600746154785s
Forwarding 1 inputs ...
Total time = 0.8139259815216064s / 1 inps = 1.2286129484778636 ips
Post processing 1 inputs ...
Total time = 0.28986215591430664s / 1 inps = 3.4499156912902933 ips
51%|█████ | 643/1261 [1:57:56<1:16:12, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025854110717773438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.381057024002075s
Forwarding 1 inputs ...
Total time = 0.8025820255279541s / 1 inps = 1.2459785644242163 ips
Post processing 1 inputs ...
Total time = 0.2885251045227051s / 1 inps = 3.4659029121720892 ips
51%|█████ | 644/1261 [1:58:04<1:15:25, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026082992553710938s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.401495933532715s
Forwarding 1 inputs ...
Total time = 0.8245468139648438s / 1 inps = 1.2127874161461947 ips
Post processing 1 inputs ...
Total time = 0.3357269763946533s / 1 inps = 2.978610806730292 ips
51%|█████ | 645/1261 [1:58:11<1:15:34, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030933141708374023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.379467010498047s
Forwarding 1 inputs ...
Total time = 0.8138279914855957s / 1 inps = 1.2287608812453823 ips
Post processing 1 inputs ...
Total time = 0.3006739616394043s / 1 inps = 3.325861656086108 ips
51%|█████ | 646/1261 [1:58:18<1:15:06, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03511309623718262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.413762092590332s
Forwarding 1 inputs ...
Total time = 0.8780021667480469s / 1 inps = 1.1389493532844115 ips
Post processing 1 inputs ...
Total time = 0.2938518524169922s / 1 inps = 3.4030753652726484 ips
51%|█████▏ | 647/1261 [1:58:26<1:15:15, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03464198112487793s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.370995044708252s
Forwarding 1 inputs ...
Total time = 0.849013090133667s / 1 inps = 1.1778381412736074 ips
Post processing 1 inputs ...
Total time = 0.28769588470458984s / 1 inps = 3.4758926114873487 ips
51%|█████▏ | 648/1261 [1:58:33<1:15:14, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03975486755371094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.367354154586792s
Forwarding 1 inputs ...
Total time = 0.8343868255615234s / 1 inps = 1.198484886583657 ips
Post processing 1 inputs ...
Total time = 0.2844090461730957s / 1 inps = 3.516062563605606 ips
51%|█████▏ | 649/1261 [1:58:40<1:14:40, 7.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026079893112182617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.362489938735962s
Forwarding 1 inputs ...
Total time = 0.8618290424346924s / 1 inps = 1.160322930374881 ips
Post processing 1 inputs ...
Total time = 0.29332613945007324s / 1 inps = 3.4091745177391837 ips
52%|█████▏ | 650/1261 [1:58:48<1:14:27, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026708126068115234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3764469623565674s
Forwarding 1 inputs ...
Total time = 0.8263669013977051s / 1 inps = 1.2101162308275106 ips
Post processing 1 inputs ...
Total time = 0.3164961338043213s / 1 inps = 3.1595962578748775 ips
52%|█████▏ | 651/1261 [1:58:55<1:14:22, 7.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01936197280883789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3653371334075928s
Forwarding 1 inputs ...
Total time = 0.8649249076843262s / 1 inps = 1.1561697334827736 ips
Post processing 1 inputs ...
Total time = 0.2862551212310791s / 1 inps = 3.493387282293375 ips
52%|█████▏ | 652/1261 [1:59:02<1:14:11, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04137110710144043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.378275156021118s
Forwarding 1 inputs ...
Total time = 0.8389990329742432s / 1 inps = 1.19189648700191 ips
Post processing 1 inputs ...
Total time = 0.2959308624267578s / 1 inps = 3.379167660309501 ips
52%|█████▏ | 653/1261 [1:59:10<1:14:04, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025107145309448242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3499350547790527s
Forwarding 1 inputs ...
Total time = 0.8384928703308105s / 1 inps = 1.1926159844453657 ips
Post processing 1 inputs ...
Total time = 0.303973913192749s / 1 inps = 3.2897559843100836 ips
52%|█████▏ | 654/1261 [1:59:17<1:13:45, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027019023895263672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3771839141845703s
Forwarding 1 inputs ...
Total time = 0.8485031127929688s / 1 inps = 1.1785460594344288 ips
Post processing 1 inputs ...
Total time = 0.28276586532592773s / 1 inps = 3.5364947563503053 ips
52%|█████▏ | 655/1261 [1:59:24<1:13:57, 7.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02704906463623047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3747711181640625s
Forwarding 1 inputs ...
Total time = 0.8611199855804443s / 1 inps = 1.1612783546371213 ips
Post processing 1 inputs ...
Total time = 0.2927219867706299s / 1 inps = 3.4162107569445292 ips
52%|█████▏ | 656/1261 [1:59:32<1:16:07, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021569013595581055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4183380603790283s
Forwarding 1 inputs ...
Total time = 1.0548310279846191s / 1 inps = 0.9480191362123843 ips
Post processing 1 inputs ...
Total time = 0.28649282455444336s / 1 inps = 3.490488816099358 ips
52%|█████▏ | 657/1261 [1:59:40<1:16:03, 7.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037255048751831055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3835699558258057s
Forwarding 1 inputs ...
Total time = 0.8809499740600586s / 1 inps = 1.1351382365008449 ips
Post processing 1 inputs ...
Total time = 0.32422304153442383s / 1 inps = 3.0842965239835576 ips
52%|█████▏ | 658/1261 [1:59:47<1:15:35, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06951498985290527s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6291720867156982s
Forwarding 1 inputs ...
Total time = 0.8995211124420166s / 1 inps = 1.1117026450721137 ips
Post processing 1 inputs ...
Total time = 0.2932751178741455s / 1 inps = 3.4097676176849565 ips
52%|█████▏ | 659/1261 [1:59:55<1:16:09, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049266815185546875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3735320568084717s
Forwarding 1 inputs ...
Total time = 0.779810905456543s / 1 inps = 1.2823621637024254 ips
Post processing 1 inputs ...
Total time = 0.2984919548034668s / 1 inps = 3.350174046260042 ips
52%|█████▏ | 660/1261 [2:00:02<1:14:41, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025458097457885742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.385221004486084s
Forwarding 1 inputs ...
Total time = 0.8169779777526855s / 1 inps = 1.224023201642185 ips
Post processing 1 inputs ...
Total time = 0.3136107921600342s / 1 inps = 3.1886657761755357 ips
52%|█████▏ | 661/1261 [2:00:09<1:13:46, 7.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021535873413085938s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3594419956207275s
Forwarding 1 inputs ...
Total time = 0.7950339317321777s / 1 inps = 1.2578079501855388 ips
Post processing 1 inputs ...
Total time = 0.28732991218566895s / 1 inps = 3.4803198608636774 ips
52%|█████▏ | 662/1261 [2:00:17<1:12:46, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024269819259643555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.374450206756592s
Forwarding 1 inputs ...
Total time = 0.7852559089660645s / 1 inps = 1.273470200710347 ips
Post processing 1 inputs ...
Total time = 0.2817049026489258s / 1 inps = 3.5498139741154886 ips
53%|█████▎ | 663/1261 [2:00:24<1:12:17, 7.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0304718017578125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3976449966430664s
Forwarding 1 inputs ...
Total time = 0.7839128971099854s / 1 inps = 1.2756519298083406 ips
Post processing 1 inputs ...
Total time = 0.3046610355377197s / 1 inps = 3.282336378313108 ips
53%|█████▎ | 664/1261 [2:00:31<1:11:51, 7.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028729915618896484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.358520030975342s
Forwarding 1 inputs ...
Total time = 0.7879130840301514s / 1 inps = 1.2691755223622263 ips
Post processing 1 inputs ...
Total time = 0.2863888740539551s / 1 inps = 3.4917557579824208 ips
53%|█████▎ | 665/1261 [2:00:38<1:11:19, 7.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02579212188720703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.381146192550659s
Forwarding 1 inputs ...
Total time = 0.7712490558624268s / 1 inps = 1.2965980216102555 ips
Post processing 1 inputs ...
Total time = 0.30431103706359863s / 1 inps = 3.2861115050224345 ips
53%|█████▎ | 666/1261 [2:00:45<1:11:02, 7.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020533084869384766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4085562229156494s
Forwarding 1 inputs ...
Total time = 0.7728321552276611s / 1 inps = 1.2939420199272373 ips
Post processing 1 inputs ...
Total time = 0.2994368076324463s / 1 inps = 3.3396027960179278 ips
53%|█████▎ | 667/1261 [2:00:52<1:10:55, 7.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029350996017456055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.356783866882324s
Forwarding 1 inputs ...
Total time = 0.7624759674072266s / 1 inps = 1.3115167464234523 ips
Post processing 1 inputs ...
Total time = 0.3046848773956299s / 1 inps = 3.2820795326231806 ips
53%|█████▎ | 668/1261 [2:00:59<1:10:38, 7.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029755830764770508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.35235595703125s
Forwarding 1 inputs ...
Total time = 0.759753942489624s / 1 inps = 1.3162156114953718 ips
Post processing 1 inputs ...
Total time = 0.2896890640258789s / 1 inps = 3.451977047744773 ips
53%|█████▎ | 669/1261 [2:01:06<1:10:20, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022041797637939453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3433661460876465s
Forwarding 1 inputs ...
Total time = 0.7826910018920898s / 1 inps = 1.277643409190324 ips
Post processing 1 inputs ...
Total time = 0.28264307975769043s / 1 inps = 3.538031077418555 ips
53%|█████▎ | 670/1261 [2:01:14<1:10:09, 7.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02765512466430664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.446068048477173s
Forwarding 1 inputs ...
Total time = 0.7881009578704834s / 1 inps = 1.2688729661007976 ips
Post processing 1 inputs ...
Total time = 0.29726505279541016s / 1 inps = 3.364001219101394 ips
53%|█████▎ | 671/1261 [2:01:21<1:10:08, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026675939559936523s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3879261016845703s
Forwarding 1 inputs ...
Total time = 0.8088269233703613s / 1 inps = 1.2363584483971246 ips
Post processing 1 inputs ...
Total time = 0.2961859703063965s / 1 inps = 3.3762571500788057 ips
53%|█████▎ | 672/1261 [2:01:28<1:10:11, 7.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02554607391357422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.384589910507202s
Forwarding 1 inputs ...
Total time = 0.792273998260498s / 1 inps = 1.2621895987948377 ips
Post processing 1 inputs ...
Total time = 0.2857639789581299s / 1 inps = 3.499391363620815 ips
53%|█████▎ | 673/1261 [2:01:35<1:10:15, 7.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025335073471069336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3363559246063232s
Forwarding 1 inputs ...
Total time = 0.7830331325531006s / 1 inps = 1.2770851684646767 ips
Post processing 1 inputs ...
Total time = 0.28410983085632324s / 1 inps = 3.519765567372107 ips
53%|█████▎ | 674/1261 [2:01:42<1:10:13, 7.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025305986404418945s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.400547981262207s
Forwarding 1 inputs ...
Total time = 0.7744710445404053s / 1 inps = 1.291203857199633 ips
Post processing 1 inputs ...
Total time = 0.32419919967651367s / 1 inps = 3.0845233455165872 ips
54%|█████▎ | 675/1261 [2:01:49<1:10:00, 7.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025107145309448242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3292059898376465s
Forwarding 1 inputs ...
Total time = 0.782912015914917s / 1 inps = 1.2772827337838113 ips
Post processing 1 inputs ...
Total time = 0.2876870632171631s / 1 inps = 3.475999194462009 ips
54%|█████▎ | 676/1261 [2:01:56<1:09:24, 7.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020367145538330078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3432819843292236s
Forwarding 1 inputs ...
Total time = 0.7728819847106934s / 1 inps = 1.2938585965027014 ips
Post processing 1 inputs ...
Total time = 0.29718017578125s / 1 inps = 3.3649620045183815 ips
54%|█████▎ | 677/1261 [2:02:04<1:09:24, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025682926177978516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.768264055252075s
Forwarding 1 inputs ...
Total time = 0.8509070873260498s / 1 inps = 1.1752164424231912 ips
Post processing 1 inputs ...
Total time = 0.2952768802642822s / 1 inps = 3.3866518743525336 ips
54%|█████▍ | 678/1261 [2:02:11<1:10:35, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02673482894897461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3706820011138916s
Forwarding 1 inputs ...
Total time = 0.7998521327972412s / 1 inps = 1.2502310852167164 ips
Post processing 1 inputs ...
Total time = 0.30760812759399414s / 1 inps = 3.25088939561402 ips
54%|█████▍ | 679/1261 [2:02:18<1:10:10, 7.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02419114112854004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.354921817779541s
Forwarding 1 inputs ...
Total time = 0.7930939197540283s / 1 inps = 1.2608847137677488 ips
Post processing 1 inputs ...
Total time = 0.2991640567779541s / 1 inps = 3.342647545196986 ips
54%|█████▍ | 680/1261 [2:02:25<1:09:48, 7.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017442941665649414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.339322805404663s
Forwarding 1 inputs ...
Total time = 0.8137807846069336s / 1 inps = 1.2288321608417094 ips
Post processing 1 inputs ...
Total time = 0.28926515579223633s / 1 inps = 3.4570358025362946 ips
54%|█████▍ | 681/1261 [2:02:33<1:09:15, 7.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028483152389526367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3762218952178955s
Forwarding 1 inputs ...
Total time = 0.8089110851287842s / 1 inps = 1.2362298136151677 ips
Post processing 1 inputs ...
Total time = 0.28295207023620605s / 1 inps = 3.5341674622320602 ips
54%|█████▍ | 682/1261 [2:02:40<1:09:00, 7.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03153204917907715s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.330118179321289s
Forwarding 1 inputs ...
Total time = 0.790215015411377s / 1 inps = 1.2654783577852053 ips
Post processing 1 inputs ...
Total time = 0.29923510551452637s / 1 inps = 3.3418538853605697 ips
54%|█████▍ | 683/1261 [2:02:47<1:08:38, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028593063354492188s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.375272035598755s
Forwarding 1 inputs ...
Total time = 0.7763960361480713s / 1 inps = 1.2880024542130504 ips
Post processing 1 inputs ...
Total time = 0.2936279773712158s / 1 inps = 3.405670021476739 ips
54%|█████▍ | 684/1261 [2:02:54<1:09:03, 7.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05238199234008789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.350193977355957s
Forwarding 1 inputs ...
Total time = 0.7911980152130127s / 1 inps = 1.2639061028619643 ips
Post processing 1 inputs ...
Total time = 0.28856492042541504s / 1 inps = 3.4654246903114774 ips
54%|█████▍ | 685/1261 [2:03:01<1:08:55, 7.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02474808692932129s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3545589447021484s
Forwarding 1 inputs ...
Total time = 0.8229460716247559s / 1 inps = 1.2151464530667042 ips
Post processing 1 inputs ...
Total time = 0.3010060787200928s / 1 inps = 3.322192044267337 ips
54%|█████▍ | 686/1261 [2:03:08<1:08:54, 7.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025554180145263672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3919851779937744s
Forwarding 1 inputs ...
Total time = 0.8420350551605225s / 1 inps = 1.1875990125011644 ips
Post processing 1 inputs ...
Total time = 0.2835841178894043s / 1 inps = 3.5262905674780862 ips
54%|█████▍ | 687/1261 [2:03:16<1:09:13, 7.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014261007308959961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4335429668426514s
Forwarding 1 inputs ...
Total time = 0.801239013671875s / 1 inps = 1.2480670348505047 ips
Post processing 1 inputs ...
Total time = 0.2866849899291992s / 1 inps = 3.4881491362591523 ips
55%|█████▍ | 688/1261 [2:03:23<1:09:24, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023828983306884766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4402248859405518s
Forwarding 1 inputs ...
Total time = 0.8139688968658447s / 1 inps = 1.2285481716198994 ips
Post processing 1 inputs ...
Total time = 0.2811930179595947s / 1 inps = 3.556276067081055 ips
55%|█████▍ | 689/1261 [2:03:30<1:09:13, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023245811462402344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3711740970611572s
Forwarding 1 inputs ...
Total time = 0.8093359470367432s / 1 inps = 1.2355808532431352 ips
Post processing 1 inputs ...
Total time = 0.281527042388916s / 1 inps = 3.5520566390867288 ips
55%|█████▍ | 690/1261 [2:03:38<1:09:07, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026378154754638672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.403576135635376s
Forwarding 1 inputs ...
Total time = 0.8438220024108887s / 1 inps = 1.1850840546263244 ips
Post processing 1 inputs ...
Total time = 0.2793431282043457s / 1 inps = 3.579826740067426 ips
55%|█████▍ | 691/1261 [2:03:45<1:09:02, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021361112594604492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3748040199279785s
Forwarding 1 inputs ...
Total time = 0.8915829658508301s / 1 inps = 1.1216006118350506 ips
Post processing 1 inputs ...
Total time = 0.28451108932495117s / 1 inps = 3.514801487606907 ips
55%|█████▍ | 692/1261 [2:03:52<1:09:13, 7.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029253005981445312s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3555939197540283s
Forwarding 1 inputs ...
Total time = 0.825706958770752s / 1 inps = 1.2110834108613084 ips
Post processing 1 inputs ...
Total time = 0.29644083976745605s / 1 inps = 3.373354362322186 ips
55%|█████▍ | 693/1261 [2:04:00<1:08:59, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029211997985839844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.393217086791992s
Forwarding 1 inputs ...
Total time = 0.8356621265411377s / 1 inps = 1.1966558830888603 ips
Post processing 1 inputs ...
Total time = 0.29245710372924805s / 1 inps = 3.4193048732568436 ips
55%|█████▌ | 694/1261 [2:04:07<1:09:02, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024110078811645508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3132078647613525s
Forwarding 1 inputs ...
Total time = 0.8226840496063232s / 1 inps = 1.215533473000391 ips
Post processing 1 inputs ...
Total time = 0.27973008155822754s / 1 inps = 3.574874730774509 ips
55%|█████▌ | 695/1261 [2:04:14<1:08:30, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040161848068237305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.464625120162964s
Forwarding 1 inputs ...
Total time = 0.8089280128479004s / 1 inps = 1.2362039441302253 ips
Post processing 1 inputs ...
Total time = 0.3031492233276367s / 1 inps = 3.298705465985057 ips
55%|█████▌ | 696/1261 [2:04:21<1:08:55, 7.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03523588180541992s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.144425868988037s
Forwarding 1 inputs ...
Total time = 0.8734011650085449s / 1 inps = 1.1449492398950676 ips
Post processing 1 inputs ...
Total time = 0.31919288635253906s / 1 inps = 3.1329018996229436 ips
55%|█████▌ | 697/1261 [2:04:30<1:10:57, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028844118118286133s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.336030960083008s
Forwarding 1 inputs ...
Total time = 0.9034991264343262s / 1 inps = 1.1068079323402515 ips
Post processing 1 inputs ...
Total time = 0.30027294158935547s / 1 inps = 3.3303034056514185 ips
55%|█████▌ | 698/1261 [2:04:37<1:10:23, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.045675039291381836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3816709518432617s
Forwarding 1 inputs ...
Total time = 0.7782609462738037s / 1 inps = 1.284916074470715 ips
Post processing 1 inputs ...
Total time = 0.28888392448425293s / 1 inps = 3.4615979472907985 ips
55%|█████▌ | 699/1261 [2:04:44<1:09:23, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03395509719848633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4080278873443604s
Forwarding 1 inputs ...
Total time = 0.8450889587402344s / 1 inps = 1.1833073780666712 ips
Post processing 1 inputs ...
Total time = 0.2837979793548584s / 1 inps = 3.5236332629049807 ips
56%|█████▌ | 700/1261 [2:04:51<1:09:04, 7.39s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04810595512390137s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.395624876022339s
Forwarding 1 inputs ...
Total time = 0.8577229976654053s / 1 inps = 1.1658775650435533 ips
Post processing 1 inputs ...
Total time = 0.29461097717285156s / 1 inps = 3.3943066534594495 ips
56%|█████▌ | 701/1261 [2:04:59<1:09:01, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02564096450805664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.400676965713501s
Forwarding 1 inputs ...
Total time = 0.8131771087646484s / 1 inps = 1.2297444052737376 ips
Post processing 1 inputs ...
Total time = 0.2855491638183594s / 1 inps = 3.50202391289827 ips
56%|█████▌ | 702/1261 [2:05:06<1:08:36, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024091005325317383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3428568840026855s
Forwarding 1 inputs ...
Total time = 0.8203539848327637s / 1 inps = 1.2189859725053431 ips
Post processing 1 inputs ...
Total time = 0.2879621982574463s / 1 inps = 3.4726780322255073 ips
56%|█████▌ | 703/1261 [2:05:13<1:07:58, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022075891494750977s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4237818717956543s
Forwarding 1 inputs ...
Total time = 0.802556037902832s / 1 inps = 1.2460189105462478 ips
Post processing 1 inputs ...
Total time = 0.29445600509643555s / 1 inps = 3.396093075678643 ips
56%|█████▌ | 704/1261 [2:05:21<1:07:35, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04033708572387695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.369204044342041s
Forwarding 1 inputs ...
Total time = 0.8059368133544922s / 1 inps = 1.2407920613996681 ips
Post processing 1 inputs ...
Total time = 0.29111409187316895s / 1 inps = 3.4350793311499146 ips
56%|█████▌ | 705/1261 [2:05:28<1:07:26, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022340059280395508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3588480949401855s
Forwarding 1 inputs ...
Total time = 0.83479905128479s / 1 inps = 1.1978930719446301 ips
Post processing 1 inputs ...
Total time = 0.3040790557861328s / 1 inps = 3.2886184726360357 ips
56%|█████▌ | 706/1261 [2:05:35<1:07:16, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029872894287109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3359029293060303s
Forwarding 1 inputs ...
Total time = 0.8148069381713867s / 1 inps = 1.2272845911747252 ips
Post processing 1 inputs ...
Total time = 0.30318307876586914s / 1 inps = 3.2983371106018833 ips
56%|█████▌ | 707/1261 [2:05:42<1:07:01, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018543004989624023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3866770267486572s
Forwarding 1 inputs ...
Total time = 0.8371119499206543s / 1 inps = 1.1945833530327516 ips
Post processing 1 inputs ...
Total time = 0.3067309856414795s / 1 inps = 3.260185787584054 ips
56%|█████▌ | 708/1261 [2:05:50<1:07:02, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031640052795410156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3775758743286133s
Forwarding 1 inputs ...
Total time = 0.7860491275787354s / 1 inps = 1.2721851152997228 ips
Post processing 1 inputs ...
Total time = 0.3141498565673828s / 1 inps = 3.1831941956831913 ips
56%|█████▌ | 709/1261 [2:05:57<1:06:53, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02253103256225586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.360960006713867s
Forwarding 1 inputs ...
Total time = 0.8445150852203369s / 1 inps = 1.1841114711871565 ips
Post processing 1 inputs ...
Total time = 0.3097829818725586s / 1 inps = 3.228066286776816 ips
56%|█████▋ | 710/1261 [2:06:04<1:06:47, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029841899871826172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.368199110031128s
Forwarding 1 inputs ...
Total time = 0.8582680225372314s / 1 inps = 1.1651371992676336 ips
Post processing 1 inputs ...
Total time = 0.32939887046813965s / 1 inps = 3.0358331180031253 ips
56%|█████▋ | 711/1261 [2:06:12<1:06:47, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0342710018157959s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.592824220657349s
Forwarding 1 inputs ...
Total time = 1.644603967666626s / 1 inps = 0.6080491228650057 ips
Post processing 1 inputs ...
Total time = 0.36180996894836426s / 1 inps = 2.7638818325172103 ips
56%|█████▋ | 712/1261 [2:06:22<1:15:53, 8.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1313169002532959s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.989565849304199s
Forwarding 1 inputs ...
Total time = 0.9669058322906494s / 1 inps = 1.0342268777414951 ips
Post processing 1 inputs ...
Total time = 0.3514750003814697s / 1 inps = 2.84515256821868 ips
57%|█████▋ | 713/1261 [2:06:34<1:26:19, 9.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06987380981445312s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.774736166000366s
Forwarding 1 inputs ...
Total time = 0.8710598945617676s / 1 inps = 1.1480266813375704 ips
Post processing 1 inputs ...
Total time = 0.3103468418121338s / 1 inps = 3.222201309222095 ips
57%|█████▋ | 714/1261 [2:06:43<1:23:49, 9.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0487208366394043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6061949729919434s
Forwarding 1 inputs ...
Total time = 0.803955078125s / 1 inps = 1.243850592165199 ips
Post processing 1 inputs ...
Total time = 0.29670000076293945s / 1 inps = 3.3704078106794166 ips
57%|█████▋ | 715/1261 [2:06:50<1:19:11, 8.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026845932006835938s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4830739498138428s
Forwarding 1 inputs ...
Total time = 0.8734800815582275s / 1 inps = 1.1448457968452694 ips
Post processing 1 inputs ...
Total time = 0.37625885009765625s / 1 inps = 2.657744793884462 ips
57%|█████▋ | 716/1261 [2:06:58<1:15:33, 8.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021287918090820312s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7989351749420166s
Forwarding 1 inputs ...
Total time = 0.9229540824890137s / 1 inps = 1.0834775196001187 ips
Post processing 1 inputs ...
Total time = 0.2939469814300537s / 1 inps = 3.4019740401312997 ips
57%|█████▋ | 717/1261 [2:07:06<1:14:19, 8.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.016932964324951172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.371462106704712s
Forwarding 1 inputs ...
Total time = 0.7670090198516846s / 1 inps = 1.3037656326301985 ips
Post processing 1 inputs ...
Total time = 0.29599595069885254s / 1 inps = 3.378424595468213 ips
57%|█████▋ | 718/1261 [2:07:14<1:13:59, 8.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030499935150146484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.486954927444458s
Forwarding 1 inputs ...
Total time = 0.8079640865325928s / 1 inps = 1.2376787739310744 ips
Post processing 1 inputs ...
Total time = 0.27910614013671875s / 1 inps = 3.5828663586911955 ips
57%|█████▋ | 719/1261 [2:07:21<1:12:06, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0385739803314209s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3373119831085205s
Forwarding 1 inputs ...
Total time = 0.7653000354766846s / 1 inps = 1.3066770595105581 ips
Post processing 1 inputs ...
Total time = 0.28991007804870605s / 1 inps = 3.449345420244397 ips
57%|█████▋ | 720/1261 [2:07:29<1:09:34, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028859853744506836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.376539945602417s
Forwarding 1 inputs ...
Total time = 0.7855110168457031s / 1 inps = 1.273056619900251 ips
Post processing 1 inputs ...
Total time = 0.2841038703918457s / 1 inps = 3.5198394116235234 ips
57%|█████▋ | 721/1261 [2:07:36<1:07:49, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02640080451965332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.97750186920166s
Forwarding 1 inputs ...
Total time = 0.9636189937591553s / 1 inps = 1.0377545549397273 ips
Post processing 1 inputs ...
Total time = 0.33902788162231445s / 1 inps = 2.949609911771283 ips
57%|█████▋ | 722/1261 [2:07:44<1:09:37, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04413294792175293s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7228150367736816s
Forwarding 1 inputs ...
Total time = 0.7960190773010254s / 1 inps = 1.2562512991404557 ips
Post processing 1 inputs ...
Total time = 0.2927889823913574s / 1 inps = 3.4154290637321405 ips
57%|█████▋ | 723/1261 [2:07:52<1:10:41, 7.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03893280029296875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.374197006225586s
Forwarding 1 inputs ...
Total time = 0.7492640018463135s / 1 inps = 1.3346430597704289 ips
Post processing 1 inputs ...
Total time = 0.30163002014160156s / 1 inps = 3.315319872771767 ips
57%|█████▋ | 724/1261 [2:07:59<1:08:53, 7.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024753093719482422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4272000789642334s
Forwarding 1 inputs ...
Total time = 0.7931458950042725s / 1 inps = 1.2608020873569714 ips
Post processing 1 inputs ...
Total time = 0.2902638912200928s / 1 inps = 3.4451408881642442 ips
57%|█████▋ | 725/1261 [2:08:06<1:07:10, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028423070907592773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.39878511428833s
Forwarding 1 inputs ...
Total time = 0.8031461238861084s / 1 inps = 1.2451034379166186 ips
Post processing 1 inputs ...
Total time = 0.2956230640411377s / 1 inps = 3.382685999969353 ips
58%|█████▊ | 726/1261 [2:08:14<1:06:03, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02800917625427246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.673409938812256s
Forwarding 1 inputs ...
Total time = 0.8056008815765381s / 1 inps = 1.2413094658524062 ips
Post processing 1 inputs ...
Total time = 0.29811906814575195s / 1 inps = 3.3543644363972547 ips
58%|█████▊ | 727/1261 [2:08:21<1:06:08, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029585838317871094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.377152919769287s
Forwarding 1 inputs ...
Total time = 0.7907900810241699s / 1 inps = 1.264558097017198 ips
Post processing 1 inputs ...
Total time = 0.2793262004852295s / 1 inps = 3.5800436846341563 ips
58%|█████▊ | 728/1261 [2:08:28<1:05:06, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025163888931274414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.406121015548706s
Forwarding 1 inputs ...
Total time = 0.7858259677886963s / 1 inps = 1.2725463919371187 ips
Post processing 1 inputs ...
Total time = 0.2973358631134033s / 1 inps = 3.363200084675295 ips
58%|█████▊ | 729/1261 [2:08:35<1:04:34, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019752979278564453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.603961944580078s
Forwarding 1 inputs ...
Total time = 0.8493759632110596s / 1 inps = 1.1773349415487429 ips
Post processing 1 inputs ...
Total time = 0.3170599937438965s / 1 inps = 3.153977227438365 ips
58%|█████▊ | 730/1261 [2:08:43<1:05:08, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0608820915222168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7031519412994385s
Forwarding 1 inputs ...
Total time = 0.934161901473999s / 1 inps = 1.0704782526691745 ips
Post processing 1 inputs ...
Total time = 0.280048131942749s / 1 inps = 3.570814749103317 ips
58%|█████▊ | 731/1261 [2:08:51<1:06:53, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030189037322998047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4282619953155518s
Forwarding 1 inputs ...
Total time = 0.839832067489624s / 1 inps = 1.1907142376560358 ips
Post processing 1 inputs ...
Total time = 0.29339098930358887s / 1 inps = 3.4084209688022877 ips
58%|█████▊ | 732/1261 [2:08:59<1:07:00, 7.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05048799514770508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4788711071014404s
Forwarding 1 inputs ...
Total time = 0.8395531177520752s / 1 inps = 1.191109864111428 ips
Post processing 1 inputs ...
Total time = 0.3048739433288574s / 1 inps = 3.2800441686855906 ips
58%|█████▊ | 733/1261 [2:09:06<1:06:57, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01978898048400879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5311830043792725s
Forwarding 1 inputs ...
Total time = 0.8543689250946045s / 1 inps = 1.1704545549678902 ips
Post processing 1 inputs ...
Total time = 0.3205280303955078s / 1 inps = 3.1198519479437543 ips
58%|█████▊ | 734/1261 [2:09:14<1:06:52, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03040909767150879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.57367205619812s
Forwarding 1 inputs ...
Total time = 0.8665130138397217s / 1 inps = 1.1540507574938388 ips
Post processing 1 inputs ...
Total time = 0.3399031162261963s / 1 inps = 2.9420148044024614 ips
58%|█████▊ | 735/1261 [2:09:22<1:06:59, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01804494857788086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5713260173797607s
Forwarding 1 inputs ...
Total time = 0.893622875213623s / 1 inps = 1.1190402884001232 ips
Post processing 1 inputs ...
Total time = 0.3499290943145752s / 1 inps = 2.857721796350639 ips
58%|█████▊ | 736/1261 [2:09:29<1:07:07, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0331120491027832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.563257932662964s
Forwarding 1 inputs ...
Total time = 0.8517849445343018s / 1 inps = 1.174005253810552 ips
Post processing 1 inputs ...
Total time = 0.31182003021240234s / 1 inps = 3.206978074239908 ips
58%|█████▊ | 737/1261 [2:09:37<1:06:56, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031096935272216797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5086259841918945s
Forwarding 1 inputs ...
Total time = 0.8804731369018555s / 1 inps = 1.1357529924407768 ips
Post processing 1 inputs ...
Total time = 0.314068078994751s / 1 inps = 3.1840230411213266 ips
59%|█████▊ | 738/1261 [2:09:45<1:06:54, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037422895431518555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5704519748687744s
Forwarding 1 inputs ...
Total time = 1.1012609004974365s / 1 inps = 0.9080500356893655 ips
Post processing 1 inputs ...
Total time = 0.30535006523132324s / 1 inps = 3.274929708112008 ips
59%|█████▊ | 739/1261 [2:09:53<1:09:40, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05827498435974121s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.567920207977295s
Forwarding 1 inputs ...
Total time = 0.9074358940124512s / 1 inps = 1.1020062206028174 ips
Post processing 1 inputs ...
Total time = 0.3061990737915039s / 1 inps = 3.265849199403251 ips
59%|█████▊ | 740/1261 [2:10:01<1:09:07, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04758787155151367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.483721971511841s
Forwarding 1 inputs ...
Total time = 0.8855040073394775s / 1 inps = 1.1293003664709875 ips
Post processing 1 inputs ...
Total time = 0.30686402320861816s / 1 inps = 3.2587723694157553 ips
59%|█████▉ | 741/1261 [2:10:09<1:07:51, 7.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0600740909576416s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.602058172225952s
Forwarding 1 inputs ...
Total time = 0.8515529632568359s / 1 inps = 1.1743250780026833 ips
Post processing 1 inputs ...
Total time = 0.34431004524230957s / 1 inps = 2.9043590618921558 ips
59%|█████▉ | 742/1261 [2:10:17<1:07:26, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04164004325866699s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4421141147613525s
Forwarding 1 inputs ...
Total time = 0.8378810882568359s / 1 inps = 1.1934867775574733 ips
Post processing 1 inputs ...
Total time = 0.3113100528717041s / 1 inps = 3.2122316345888007 ips
59%|█████▉ | 743/1261 [2:10:24<1:06:49, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020405054092407227s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.452049970626831s
Forwarding 1 inputs ...
Total time = 0.885897159576416s / 1 inps = 1.1287991943423108 ips
Post processing 1 inputs ...
Total time = 0.31281518936157227s / 1 inps = 3.196775712972603 ips
59%|█████▉ | 744/1261 [2:10:32<1:06:01, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03658413887023926s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6197609901428223s
Forwarding 1 inputs ...
Total time = 1.0071980953216553s / 1 inps = 0.9928533469680991 ips
Post processing 1 inputs ...
Total time = 0.3477158546447754s / 1 inps = 2.875911427799559 ips
59%|█████▉ | 745/1261 [2:10:40<1:06:26, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05433297157287598s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.536324977874756s
Forwarding 1 inputs ...
Total time = 0.8326771259307861s / 1 inps = 1.2009456833369554 ips
Post processing 1 inputs ...
Total time = 0.34627294540405273s / 1 inps = 2.8878952666461943 ips
59%|█████▉ | 746/1261 [2:10:47<1:06:21, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01988506317138672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4909439086914062s
Forwarding 1 inputs ...
Total time = 0.8878269195556641s / 1 inps = 1.126345662621354 ips
Post processing 1 inputs ...
Total time = 0.33280110359191895s / 1 inps = 3.004797728153573 ips
59%|█████▉ | 747/1261 [2:10:55<1:06:05, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017907142639160156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4702649116516113s
Forwarding 1 inputs ...
Total time = 0.8995320796966553s / 1 inps = 1.1116890909963155 ips
Post processing 1 inputs ...
Total time = 0.30658698081970215s / 1 inps = 3.261717106598472 ips
59%|█████▉ | 748/1261 [2:11:03<1:05:36, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035089969635009766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5421650409698486s
Forwarding 1 inputs ...
Total time = 0.8920369148254395s / 1 inps = 1.1210298401111434 ips
Post processing 1 inputs ...
Total time = 0.29570603370666504s / 1 inps = 3.3817368805939942 ips
59%|█████▉ | 749/1261 [2:11:10<1:05:15, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040821075439453125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.497886896133423s
Forwarding 1 inputs ...
Total time = 0.9621880054473877s / 1 inps = 1.0392979275760468 ips
Post processing 1 inputs ...
Total time = 0.36945390701293945s / 1 inps = 2.706697590736202 ips
59%|█████▉ | 750/1261 [2:11:18<1:05:38, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07032990455627441s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5574557781219482s
Forwarding 1 inputs ...
Total time = 0.8636839389801025s / 1 inps = 1.157830955130263 ips
Post processing 1 inputs ...
Total time = 0.38605189323425293s / 1 inps = 2.5903253358563605 ips
60%|█████▉ | 751/1261 [2:11:27<1:08:50, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07128381729125977s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6058590412139893s
Forwarding 1 inputs ...
Total time = 0.7862567901611328s / 1 inps = 1.2718491115288981 ips
Post processing 1 inputs ...
Total time = 0.3782820701599121s / 1 inps = 2.64352999754196 ips
60%|█████▉ | 752/1261 [2:11:35<1:08:20, 8.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0313720703125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5594379901885986s
Forwarding 1 inputs ...
Total time = 0.7993519306182861s / 1 inps = 1.2510134293746131 ips
Post processing 1 inputs ...
Total time = 0.31068992614746094s / 1 inps = 3.2186431417328154 ips
60%|█████▉ | 753/1261 [2:11:43<1:06:58, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025079011917114258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.424957036972046s
Forwarding 1 inputs ...
Total time = 0.8202428817749023s / 1 inps = 1.2191510858785215 ips
Post processing 1 inputs ...
Total time = 0.30609917640686035s / 1 inps = 3.2669150297576164 ips
60%|█████▉ | 754/1261 [2:11:50<1:05:52, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0294189453125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4902939796447754s
Forwarding 1 inputs ...
Total time = 0.7793979644775391s / 1 inps = 1.2830415853989805 ips
Post processing 1 inputs ...
Total time = 0.33229613304138184s / 1 inps = 3.0093639394698193 ips
60%|█████▉ | 755/1261 [2:11:57<1:04:49, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03433704376220703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5889499187469482s
Forwarding 1 inputs ...
Total time = 0.8345639705657959s / 1 inps = 1.198230495526959 ips
Post processing 1 inputs ...
Total time = 0.3020508289337158s / 1 inps = 3.3107010615734715 ips
60%|█████▉ | 756/1261 [2:12:05<1:04:26, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04121208190917969s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4905171394348145s
Forwarding 1 inputs ...
Total time = 0.777656078338623s / 1 inps = 1.2859154938213695 ips
Post processing 1 inputs ...
Total time = 0.3057229518890381s / 1 inps = 3.270935315196581 ips
60%|██████ | 757/1261 [2:12:12<1:03:30, 7.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02532792091369629s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3166940212249756s
Forwarding 1 inputs ...
Total time = 0.8075590133666992s / 1 inps = 1.2382995960023004 ips
Post processing 1 inputs ...
Total time = 0.299731969833374s / 1 inps = 3.336314109422217 ips
60%|██████ | 758/1261 [2:12:20<1:02:13, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04774212837219238s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.34830904006958s
Forwarding 1 inputs ...
Total time = 0.7788059711456299s / 1 inps = 1.2840168630563937 ips
Post processing 1 inputs ...
Total time = 0.2966008186340332s / 1 inps = 3.371534861587384 ips
60%|██████ | 759/1261 [2:12:27<1:01:18, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02946186065673828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4128689765930176s
Forwarding 1 inputs ...
Total time = 0.7911758422851562s / 1 inps = 1.2639415241897378 ips
Post processing 1 inputs ...
Total time = 0.302501916885376s / 1 inps = 3.3057641759636187 ips
60%|██████ | 760/1261 [2:12:34<1:00:50, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027432918548583984s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3748319149017334s
Forwarding 1 inputs ...
Total time = 0.9066619873046875s / 1 inps = 1.1029468688466653 ips
Post processing 1 inputs ...
Total time = 0.3210880756378174s / 1 inps = 3.1144102689381254 ips
60%|██████ | 761/1261 [2:12:41<1:00:55, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08302807807922363s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0160109996795654s
Forwarding 1 inputs ...
Total time = 2.0781118869781494s / 1 inps = 0.4812060439412301 ips
Post processing 1 inputs ...
Total time = 0.5483269691467285s / 1 inps = 1.8237293736548035 ips
60%|██████ | 762/1261 [2:12:52<1:08:47, 8.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048892974853515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.33119797706604s
Forwarding 1 inputs ...
Total time = 1.0341291427612305s / 1 inps = 0.9669972140325703 ips
Post processing 1 inputs ...
Total time = 0.4215857982635498s / 1 inps = 2.371996410028169 ips
61%|██████ | 763/1261 [2:13:01<1:11:34, 8.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.045497894287109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.059128999710083s
Forwarding 1 inputs ...
Total time = 1.2140729427337646s / 1 inps = 0.823673738868004 ips
Post processing 1 inputs ...
Total time = 0.46942687034606934s / 1 inps = 2.130257262995583 ips
61%|██████ | 764/1261 [2:13:11<1:13:23, 8.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028831958770751953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.907158136367798s
Forwarding 1 inputs ...
Total time = 1.2674291133880615s / 1 inps = 0.7889987609064965 ips
Post processing 1 inputs ...
Total time = 0.33306407928466797s / 1 inps = 3.0024252454594653 ips
61%|██████ | 765/1261 [2:13:19<1:13:11, 8.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03824591636657715s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3327431678771973s
Forwarding 1 inputs ...
Total time = 1.3202440738677979s / 1 inps = 0.7574357043469938 ips
Post processing 1 inputs ...
Total time = 0.350877046585083s / 1 inps = 2.8500011891131596 ips
61%|██████ | 766/1261 [2:13:29<1:14:34, 9.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036794185638427734s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.571989059448242s
Forwarding 1 inputs ...
Total time = 0.9455299377441406s / 1 inps = 1.0576079720815768 ips
Post processing 1 inputs ...
Total time = 0.3424971103668213s / 1 inps = 2.91973266264635 ips
61%|██████ | 767/1261 [2:13:37<1:11:49, 8.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05042004585266113s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.505728006362915s
Forwarding 1 inputs ...
Total time = 0.8117330074310303s / 1 inps = 1.2319321634644333 ips
Post processing 1 inputs ...
Total time = 0.319263219833374s / 1 inps = 3.1322117233607676 ips
61%|██████ | 768/1261 [2:13:45<1:09:16, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035941123962402344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5443079471588135s
Forwarding 1 inputs ...
Total time = 0.8042910099029541s / 1 inps = 1.2433310675953722 ips
Post processing 1 inputs ...
Total time = 0.30449509620666504s / 1 inps = 3.284125138492497 ips
61%|██████ | 769/1261 [2:13:52<1:07:08, 8.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030102014541625977s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.448760986328125s
Forwarding 1 inputs ...
Total time = 0.793950080871582s / 1 inps = 1.2595250307200934 ips
Post processing 1 inputs ...
Total time = 0.2977280616760254s / 1 inps = 3.358769725536171 ips
61%|██████ | 770/1261 [2:14:00<1:05:34, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03760409355163574s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4617888927459717s
Forwarding 1 inputs ...
Total time = 0.7971010208129883s / 1 inps = 1.2545461288960196 ips
Post processing 1 inputs ...
Total time = 0.31414008140563965s / 1 inps = 3.183293247793904 ips
61%|██████ | 771/1261 [2:14:07<1:04:12, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02624201774597168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3813090324401855s
Forwarding 1 inputs ...
Total time = 0.828956127166748s / 1 inps = 1.206336460070396 ips
Post processing 1 inputs ...
Total time = 0.3052489757537842s / 1 inps = 3.276014268452801 ips
61%|██████ | 772/1261 [2:14:15<1:02:59, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029628992080688477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.545396089553833s
Forwarding 1 inputs ...
Total time = 0.8214421272277832s / 1 inps = 1.2173712144211752 ips
Post processing 1 inputs ...
Total time = 0.2963690757751465s / 1 inps = 3.3741711998275226 ips
61%|██████▏ | 773/1261 [2:14:22<1:02:46, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034372806549072266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.560302972793579s
Forwarding 1 inputs ...
Total time = 0.8387959003448486s / 1 inps = 1.1921851306007536 ips
Post processing 1 inputs ...
Total time = 0.3252551555633545s / 1 inps = 3.0745092979939437 ips
61%|██████▏ | 774/1261 [2:14:31<1:03:48, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024754047393798828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4538958072662354s
Forwarding 1 inputs ...
Total time = 0.8044030666351318s / 1 inps = 1.2431578663456149 ips
Post processing 1 inputs ...
Total time = 0.3080110549926758s / 1 inps = 3.246636715762618 ips
61%|██████▏ | 775/1261 [2:14:38<1:02:40, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04997110366821289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.510370969772339s
Forwarding 1 inputs ...
Total time = 0.8191878795623779s / 1 inps = 1.2207211861266973 ips
Post processing 1 inputs ...
Total time = 0.30067014694213867s / 1 inps = 3.3259038523450126 ips
62%|██████▏ | 776/1261 [2:14:46<1:01:49, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047590017318725586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.565696954727173s
Forwarding 1 inputs ...
Total time = 0.8186638355255127s / 1 inps = 1.221502595577689 ips
Post processing 1 inputs ...
Total time = 0.30997300148010254s / 1 inps = 3.2260874180172463 ips
62%|██████▏ | 777/1261 [2:14:53<1:01:34, 7.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.016596078872680664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5508670806884766s
Forwarding 1 inputs ...
Total time = 0.7707090377807617s / 1 inps = 1.2975065179973446 ips
Post processing 1 inputs ...
Total time = 0.33303380012512207s / 1 inps = 3.0026982234965227 ips
62%|██████▏ | 778/1261 [2:15:01<1:01:03, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023840904235839844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.484910011291504s
Forwarding 1 inputs ...
Total time = 0.9172029495239258s / 1 inps = 1.0902712431518564 ips
Post processing 1 inputs ...
Total time = 0.38405513763427734s / 1 inps = 2.603792794336385 ips
62%|██████▏ | 779/1261 [2:15:08<1:01:15, 7.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05573892593383789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4909121990203857s
Forwarding 1 inputs ...
Total time = 0.8230509757995605s / 1 inps = 1.214991573308738 ips
Post processing 1 inputs ...
Total time = 0.3101060390472412s / 1 inps = 3.224703404913895 ips
62%|██████▏ | 780/1261 [2:15:16<1:01:01, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026910066604614258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.438937187194824s
Forwarding 1 inputs ...
Total time = 0.8158588409423828s / 1 inps = 1.2257022291318427 ips
Post processing 1 inputs ...
Total time = 0.30539894104003906s / 1 inps = 3.274405590911646 ips
62%|██████▏ | 781/1261 [2:15:23<1:00:39, 7.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03143787384033203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.525393009185791s
Forwarding 1 inputs ...
Total time = 0.8285160064697266s / 1 inps = 1.2069772849180789 ips
Post processing 1 inputs ...
Total time = 0.3188350200653076s / 1 inps = 3.1364183263029513 ips
62%|██████▏ | 782/1261 [2:15:31<1:00:26, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02068495750427246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.430694818496704s
Forwarding 1 inputs ...
Total time = 0.8193929195404053s / 1 inps = 1.2204157201662136 ips
Post processing 1 inputs ...
Total time = 0.3104381561279297s / 1 inps = 3.2212535097905493 ips
62%|██████▏ | 783/1261 [2:15:38<59:53, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03801608085632324s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4572501182556152s
Forwarding 1 inputs ...
Total time = 0.7678561210632324s / 1 inps = 1.3023273144131786 ips
Post processing 1 inputs ...
Total time = 0.3031790256500244s / 1 inps = 3.2983812051508896 ips
62%|██████▏ | 784/1261 [2:15:46<59:39, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.013949155807495117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4322991371154785s
Forwarding 1 inputs ...
Total time = 0.802375078201294s / 1 inps = 1.2462999252690241 ips
Post processing 1 inputs ...
Total time = 0.32637500762939453s / 1 inps = 3.063960096894185 ips
62%|██████▏ | 785/1261 [2:15:53<59:01, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03139781951904297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7111828327178955s
Forwarding 1 inputs ...
Total time = 0.833076000213623s / 1 inps = 1.2003706741564673 ips
Post processing 1 inputs ...
Total time = 0.3287820816040039s / 1 inps = 3.041528282567519 ips
62%|██████▏ | 786/1261 [2:16:01<59:29, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017930030822753906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.426740884780884s
Forwarding 1 inputs ...
Total time = 0.8101489543914795s / 1 inps = 1.2343409129634955 ips
Post processing 1 inputs ...
Total time = 0.3249928951263428s / 1 inps = 3.0769903434696455 ips
62%|██████▏ | 787/1261 [2:16:08<59:21, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05161404609680176s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5493061542510986s
Forwarding 1 inputs ...
Total time = 0.8905229568481445s / 1 inps = 1.122935677637476 ips
Post processing 1 inputs ...
Total time = 0.35418009757995605s / 1 inps = 2.8234223403088037 ips
62%|██████▏ | 788/1261 [2:16:16<59:59, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020147085189819336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.462877035140991s
Forwarding 1 inputs ...
Total time = 1.2527379989624023s / 1 inps = 0.7982515105538939 ips
Post processing 1 inputs ...
Total time = 0.466810941696167s / 1 inps = 2.1421948602285967 ips
63%|██████▎ | 789/1261 [2:16:27<1:06:57, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09987211227416992s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4616358280181885s
Forwarding 1 inputs ...
Total time = 1.1238279342651367s / 1 inps = 0.8898159313453025 ips
Post processing 1 inputs ...
Total time = 0.3252389430999756s / 1 inps = 3.0746625556848177 ips
63%|██████▎ | 790/1261 [2:16:36<1:09:07, 8.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05145692825317383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6493101119995117s
Forwarding 1 inputs ...
Total time = 0.8042459487915039s / 1 inps = 1.2434007302152343 ips
Post processing 1 inputs ...
Total time = 0.3207409381866455s / 1 inps = 3.117780990645105 ips
63%|██████▎ | 791/1261 [2:16:44<1:06:57, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.056303977966308594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7616190910339355s
Forwarding 1 inputs ...
Total time = 1.0057721138000488s / 1 inps = 0.9942610122901098 ips
Post processing 1 inputs ...
Total time = 0.3326249122619629s / 1 inps = 3.006389368732663 ips
63%|██████▎ | 792/1261 [2:16:52<1:05:51, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06465387344360352s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.094588041305542s
Forwarding 1 inputs ...
Total time = 1.178222894668579s / 1 inps = 0.8487358415160391 ips
Post processing 1 inputs ...
Total time = 0.45035791397094727s / 1 inps = 2.2204561504930282 ips
63%|██████▎ | 793/1261 [2:17:02<1:09:40, 8.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09063100814819336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8905539512634277s
Forwarding 1 inputs ...
Total time = 1.0925278663635254s / 1 inps = 0.915308461035869 ips
Post processing 1 inputs ...
Total time = 0.42927098274230957s / 1 inps = 2.3295308562710324 ips
63%|██████▎ | 794/1261 [2:17:11<1:09:44, 8.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026839017868041992s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.417046070098877s
Forwarding 1 inputs ...
Total time = 0.8875939846038818s / 1 inps = 1.1266412541611388 ips
Post processing 1 inputs ...
Total time = 0.3577408790588379s / 1 inps = 2.7953193457534087 ips
63%|██████▎ | 795/1261 [2:17:19<1:06:43, 8.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06325292587280273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.898837089538574s
Forwarding 1 inputs ...
Total time = 0.8921821117401123s / 1 inps = 1.1208473996969068 ips
Post processing 1 inputs ...
Total time = 0.35549211502075195s / 1 inps = 2.813001914097658 ips
63%|██████▎ | 796/1261 [2:17:27<1:05:43, 8.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025645971298217773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5271050930023193s
Forwarding 1 inputs ...
Total time = 0.880194902420044s / 1 inps = 1.1361120102497289 ips
Post processing 1 inputs ...
Total time = 0.32677698135375977s / 1 inps = 3.0601910693257417 ips
63%|██████▎ | 797/1261 [2:17:35<1:03:42, 8.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03288006782531738s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7431929111480713s
Forwarding 1 inputs ...
Total time = 1.0530610084533691s / 1 inps = 0.9496125979146262 ips
Post processing 1 inputs ...
Total time = 0.3414149284362793s / 1 inps = 2.9289873309878924 ips
63%|██████▎ | 798/1261 [2:17:43<1:03:28, 8.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023704051971435547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6105029582977295s
Forwarding 1 inputs ...
Total time = 0.8622410297393799s / 1 inps = 1.1597685165855063 ips
Post processing 1 inputs ...
Total time = 0.3123490810394287s / 1 inps = 3.201546156858285 ips
63%|██████▎ | 799/1261 [2:17:51<1:02:23, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025309085845947266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.775296926498413s
Forwarding 1 inputs ...
Total time = 1.0299019813537598s / 1 inps = 0.970966187175934 ips
Post processing 1 inputs ...
Total time = 0.3291800022125244s / 1 inps = 3.0378516109079503 ips
63%|██████▎ | 800/1261 [2:17:59<1:02:44, 8.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025727033615112305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7091240882873535s
Forwarding 1 inputs ...
Total time = 0.9779460430145264s / 1 inps = 1.0225513024394395 ips
Post processing 1 inputs ...
Total time = 0.3695540428161621s / 1 inps = 2.7059641734117323 ips
64%|██████▎ | 801/1261 [2:18:08<1:03:14, 8.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01497507095336914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.155607223510742s
Forwarding 1 inputs ...
Total time = 1.626711130142212s / 1 inps = 0.6147372950676111 ips
Post processing 1 inputs ...
Total time = 0.33023500442504883s / 1 inps = 3.028146582283233 ips
64%|██████▎ | 802/1261 [2:18:18<1:07:45, 8.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02779412269592285s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5056259632110596s
Forwarding 1 inputs ...
Total time = 0.8293390274047852s / 1 inps = 1.2057795026591922 ips
Post processing 1 inputs ...
Total time = 0.29349184036254883s / 1 inps = 3.4072497510142212 ips
64%|██████▎ | 803/1261 [2:18:26<1:05:13, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02848196029663086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.01540207862854s
Forwarding 1 inputs ...
Total time = 0.8271350860595703s / 1 inps = 1.2089923603216366 ips
Post processing 1 inputs ...
Total time = 0.28751206398010254s / 1 inps = 3.4781149220549077 ips
64%|██████▍ | 804/1261 [2:18:34<1:04:39, 8.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0274660587310791s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5397520065307617s
Forwarding 1 inputs ...
Total time = 0.7867288589477539s / 1 inps = 1.2710859511846244 ips
Post processing 1 inputs ...
Total time = 0.3083322048187256s / 1 inps = 3.2432551137106134 ips
64%|██████▍ | 805/1261 [2:18:42<1:02:25, 8.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03198409080505371s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4080309867858887s
Forwarding 1 inputs ...
Total time = 0.9120869636535645s / 1 inps = 1.0963866822460444 ips
Post processing 1 inputs ...
Total time = 0.3353149890899658s / 1 inps = 2.982270499490548 ips
64%|██████▍ | 806/1261 [2:18:50<1:01:39, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05989718437194824s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4681551456451416s
Forwarding 1 inputs ...
Total time = 0.8057460784912109s / 1 inps = 1.2410857796199724 ips
Post processing 1 inputs ...
Total time = 0.30315399169921875s / 1 inps = 3.2986535799672834 ips
64%|██████▍ | 807/1261 [2:18:57<1:00:05, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030812978744506836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4382028579711914s
Forwarding 1 inputs ...
Total time = 0.8223400115966797s / 1 inps = 1.2160420092637478 ips
Post processing 1 inputs ...
Total time = 0.2881791591644287s / 1 inps = 3.470063563581369 ips
64%|██████▍ | 808/1261 [2:19:05<58:47, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034342050552368164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.00816011428833s
Forwarding 1 inputs ...
Total time = 0.9071929454803467s / 1 inps = 1.1023013406155988 ips
Post processing 1 inputs ...
Total time = 0.3776991367340088s / 1 inps = 2.6476099697951945 ips
64%|██████▍ | 809/1261 [2:19:13<1:00:05, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04386591911315918s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8122060298919678s
Forwarding 1 inputs ...
Total time = 0.843238115310669s / 1 inps = 1.185904647623259 ips
Post processing 1 inputs ...
Total time = 0.2970120906829834s / 1 inps = 3.3668663039961984 ips
64%|██████▍ | 810/1261 [2:19:22<1:00:49, 8.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03276515007019043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.6503751277923584s
Forwarding 1 inputs ...
Total time = 1.2570879459381104s / 1 inps = 0.7954892919235999 ips
Post processing 1 inputs ...
Total time = 0.34781789779663086s / 1 inps = 2.875067690118408 ips
64%|██████▍ | 811/1261 [2:19:31<1:04:00, 8.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01738595962524414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.858367919921875s
Forwarding 1 inputs ...
Total time = 1.2028260231018066s / 1 inps = 0.8313754281947061 ips
Post processing 1 inputs ...
Total time = 0.4705080986022949s / 1 inps = 2.1253619288820516 ips
64%|██████▍ | 812/1261 [2:19:41<1:06:52, 8.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0361788272857666s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.077659845352173s
Forwarding 1 inputs ...
Total time = 1.0129828453063965s / 1 inps = 0.9871835486982313 ips
Post processing 1 inputs ...
Total time = 0.3236851692199707s / 1 inps = 3.0894217440046434 ips
64%|██████▍ | 813/1261 [2:19:50<1:06:58, 8.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021107912063598633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.667841911315918s
Forwarding 1 inputs ...
Total time = 0.9818449020385742s / 1 inps = 1.0184908002513746 ips
Post processing 1 inputs ...
Total time = 0.3469560146331787s / 1 inps = 2.882209726374843 ips
65%|██████▍ | 814/1261 [2:19:58<1:05:26, 8.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038793087005615234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.712247848510742s
Forwarding 1 inputs ...
Total time = 0.9411370754241943s / 1 inps = 1.0625444753085247 ips
Post processing 1 inputs ...
Total time = 0.30706095695495605s / 1 inps = 3.2566823536171476 ips
65%|██████▍ | 815/1261 [2:20:06<1:03:44, 8.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03395390510559082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5759780406951904s
Forwarding 1 inputs ...
Total time = 0.8520550727844238s / 1 inps = 1.173633057229632 ips
Post processing 1 inputs ...
Total time = 0.37195301055908203s / 1 inps = 2.688511644244797 ips
65%|██████▍ | 816/1261 [2:20:15<1:02:28, 8.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03146696090698242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1521191596984863s
Forwarding 1 inputs ...
Total time = 0.8991971015930176s / 1 inps = 1.1121032287897725 ips
Post processing 1 inputs ...
Total time = 0.32155704498291016s / 1 inps = 3.1098681108142014 ips
65%|██████▍ | 817/1261 [2:20:23<1:02:24, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017377138137817383s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4416110515594482s
Forwarding 1 inputs ...
Total time = 0.8476660251617432s / 1 inps = 1.1797098979037057 ips
Post processing 1 inputs ...
Total time = 0.3097999095916748s / 1 inps = 3.2278899026085215 ips
65%|██████▍ | 818/1261 [2:20:30<1:00:00, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029880046844482422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6045451164245605s
Forwarding 1 inputs ...
Total time = 0.7853720188140869s / 1 inps = 1.273281930148214 ips
Post processing 1 inputs ...
Total time = 0.31191396713256836s / 1 inps = 3.20601225136861 ips
65%|██████▍ | 819/1261 [2:20:38<58:53, 7.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040818214416503906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6938669681549072s
Forwarding 1 inputs ...
Total time = 1.4639439582824707s / 1 inps = 0.6830862577370931 ips
Post processing 1 inputs ...
Total time = 0.355025053024292s / 1 inps = 2.8167026283961336 ips
65%|██████▌ | 820/1261 [2:20:47<1:00:23, 8.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023869037628173828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.870288848876953s
Forwarding 1 inputs ...
Total time = 0.8977479934692383s / 1 inps = 1.1138983403745868 ips
Post processing 1 inputs ...
Total time = 0.29822278022766113s / 1 inps = 3.353197898687039 ips
65%|██████▌ | 821/1261 [2:20:55<1:00:43, 8.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03346705436706543s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.644990921020508s
Forwarding 1 inputs ...
Total time = 1.000694990158081s / 1 inps = 0.9993054925177838 ips
Post processing 1 inputs ...
Total time = 0.7949709892272949s / 1 inps = 1.2579075382008487 ips
65%|██████▌ | 822/1261 [2:21:04<1:01:43, 8.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09430193901062012s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.749660015106201s
Forwarding 1 inputs ...
Total time = 0.868048906326294s / 1 inps = 1.1520088242863433 ips
Post processing 1 inputs ...
Total time = 0.3122580051422119s / 1 inps = 3.2024799477744987 ips
65%|██████▌ | 823/1261 [2:21:14<1:05:53, 9.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0513911247253418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.397930145263672s
Forwarding 1 inputs ...
Total time = 0.7853109836578369s / 1 inps = 1.2733808908951971 ips
Post processing 1 inputs ...
Total time = 0.3408339023590088s / 1 inps = 2.9339804317549234 ips
65%|██████▌ | 824/1261 [2:21:22<1:02:50, 8.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0367131233215332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.450490951538086s
Forwarding 1 inputs ...
Total time = 0.7654519081115723s / 1 inps = 1.306417802872914 ips
Post processing 1 inputs ...
Total time = 0.2927689552307129s / 1 inps = 3.4156626996600874 ips
65%|██████▌ | 825/1261 [2:21:29<59:32, 8.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030037879943847656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.389172077178955s
Forwarding 1 inputs ...
Total time = 0.829517126083374s / 1 inps = 1.205520619835269 ips
Post processing 1 inputs ...
Total time = 0.28322696685791016s / 1 inps = 3.530737242621681 ips
66%|██████▌ | 826/1261 [2:21:36<57:03, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022016048431396484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.363435983657837s
Forwarding 1 inputs ...
Total time = 0.8266799449920654s / 1 inps = 1.2096579892349972 ips
Post processing 1 inputs ...
Total time = 0.3047678470611572s / 1 inps = 3.2811860228790204 ips
66%|██████▌ | 827/1261 [2:21:44<55:37, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026439905166625977s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4106810092926025s
Forwarding 1 inputs ...
Total time = 0.8197879791259766s / 1 inps = 1.219827596235502 ips
Post processing 1 inputs ...
Total time = 0.30353498458862305s / 1 inps = 3.2945131558897134 ips
66%|██████▌ | 828/1261 [2:21:51<54:16, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029567956924438477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.374885082244873s
Forwarding 1 inputs ...
Total time = 0.7898979187011719s / 1 inps = 1.2659863715608957 ips
Post processing 1 inputs ...
Total time = 0.36679983139038086s / 1 inps = 2.72628260544567 ips
66%|██████▌ | 829/1261 [2:21:58<53:33, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0257568359375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.431256055831909s
Forwarding 1 inputs ...
Total time = 0.8200271129608154s / 1 inps = 1.2194718737888663 ips
Post processing 1 inputs ...
Total time = 0.3048241138458252s / 1 inps = 3.2805803562699203 ips
66%|██████▌ | 830/1261 [2:22:06<53:24, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05541706085205078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3967268466949463s
Forwarding 1 inputs ...
Total time = 0.9019310474395752s / 1 inps = 1.1087322061246538 ips
Post processing 1 inputs ...
Total time = 0.3127419948577881s / 1 inps = 3.1975238901150003 ips
66%|██████▌ | 831/1261 [2:22:13<53:26, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04154801368713379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.354248046875s
Forwarding 1 inputs ...
Total time = 0.8385839462280273s / 1 inps = 1.192486458270548 ips
Post processing 1 inputs ...
Total time = 0.27692604064941406s / 1 inps = 3.6110724641673957 ips
66%|██████▌ | 832/1261 [2:22:20<52:39, 7.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03619194030761719s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3507118225097656s
Forwarding 1 inputs ...
Total time = 0.8018338680267334s / 1 inps = 1.2471411346853456 ips
Post processing 1 inputs ...
Total time = 0.28495097160339355s / 1 inps = 3.5093756458280865 ips
66%|██████▌ | 833/1261 [2:22:27<51:56, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03051590919494629s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3802847862243652s
Forwarding 1 inputs ...
Total time = 0.7977631092071533s / 1 inps = 1.2535049420796573 ips
Post processing 1 inputs ...
Total time = 0.31967997550964355s / 1 inps = 3.1281283677708296 ips
66%|██████▌ | 834/1261 [2:22:34<51:21, 7.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.059576988220214844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.405388116836548s
Forwarding 1 inputs ...
Total time = 0.8711268901824951s / 1 inps = 1.147938390227521 ips
Post processing 1 inputs ...
Total time = 0.3084559440612793s / 1 inps = 3.2419540594145118 ips
66%|██████▌ | 835/1261 [2:22:42<51:27, 7.25s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025048017501831055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4229609966278076s
Forwarding 1 inputs ...
Total time = 0.8560621738433838s / 1 inps = 1.1681394535987868 ips
Post processing 1 inputs ...
Total time = 0.2893819808959961s / 1 inps = 3.455640178091808 ips
66%|██████▋ | 836/1261 [2:22:49<51:41, 7.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030381202697753906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3995471000671387s
Forwarding 1 inputs ...
Total time = 0.8456580638885498s / 1 inps = 1.1825110440048865 ips
Post processing 1 inputs ...
Total time = 0.29955601692199707s / 1 inps = 3.3382737902420274 ips
66%|██████▋ | 837/1261 [2:22:56<51:31, 7.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03646397590637207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3390939235687256s
Forwarding 1 inputs ...
Total time = 0.8437697887420654s / 1 inps = 1.1851573893050265 ips
Post processing 1 inputs ...
Total time = 0.2866830825805664s / 1 inps = 3.488172343476077 ips
66%|██████▋ | 838/1261 [2:23:04<51:18, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024153947830200195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.418020009994507s
Forwarding 1 inputs ...
Total time = 0.8302819728851318s / 1 inps = 1.2044101072375666 ips
Post processing 1 inputs ...
Total time = 0.304318904876709s / 1 inps = 3.2860265464123484 ips
67%|██████▋ | 839/1261 [2:23:11<50:52, 7.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.044847965240478516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.37261700630188s
Forwarding 1 inputs ...
Total time = 0.8009319305419922s / 1 inps = 1.2485455528328082 ips
Post processing 1 inputs ...
Total time = 0.28328394889831543s / 1 inps = 3.5300270413801287 ips
67%|██████▋ | 840/1261 [2:23:18<50:45, 7.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027756929397583008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.369560956954956s
Forwarding 1 inputs ...
Total time = 0.8250701427459717s / 1 inps = 1.2120181645063928 ips
Post processing 1 inputs ...
Total time = 0.31535887718200684s / 1 inps = 3.1709904884740507 ips
67%|██████▋ | 841/1261 [2:23:25<50:36, 7.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028519868850708008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3657071590423584s
Forwarding 1 inputs ...
Total time = 0.8499050140380859s / 1 inps = 1.176602071387695 ips
Post processing 1 inputs ...
Total time = 0.29327988624572754s / 1 inps = 3.4097121790416267 ips
67%|██████▋ | 842/1261 [2:23:33<50:43, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0243380069732666s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.393213987350464s
Forwarding 1 inputs ...
Total time = 0.8273410797119141s / 1 inps = 1.2086913420861527 ips
Post processing 1 inputs ...
Total time = 0.3144500255584717s / 1 inps = 3.1801555691527557 ips
67%|██████▋ | 843/1261 [2:23:40<50:33, 7.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025440216064453125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.369365930557251s
Forwarding 1 inputs ...
Total time = 0.827233076095581s / 1 inps = 1.2088491489240898 ips
Post processing 1 inputs ...
Total time = 0.2992219924926758s / 1 inps = 3.342000337841068 ips
67%|██████▋ | 844/1261 [2:23:47<50:37, 7.28s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025003910064697266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.102151155471802s
Forwarding 1 inputs ...
Total time = 1.05454683303833s / 1 inps = 0.9482746224924204 ips
Post processing 1 inputs ...
Total time = 0.5051369667053223s / 1 inps = 1.9796610937471977 ips
67%|██████▋ | 845/1261 [2:23:58<58:06, 8.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.12388491630554199s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.346611976623535s
Forwarding 1 inputs ...
Total time = 1.0767319202423096s / 1 inps = 0.9287362817059963 ips
Post processing 1 inputs ...
Total time = 0.6578609943389893s / 1 inps = 1.5200779626777963 ips
67%|██████▋ | 846/1261 [2:24:08<1:00:44, 8.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04253101348876953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.187417984008789s
Forwarding 1 inputs ...
Total time = 0.9286339282989502s / 1 inps = 1.0768505969104278 ips
Post processing 1 inputs ...
Total time = 0.3275778293609619s / 1 inps = 3.05270964750819 ips
67%|██████▋ | 847/1261 [2:24:17<1:01:19, 8.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01454305648803711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.395232915878296s
Forwarding 1 inputs ...
Total time = 0.9645750522613525s / 1 inps = 1.036725963060725 ips
Post processing 1 inputs ...
Total time = 0.3408079147338867s / 1 inps = 2.9342041565578976 ips
67%|██████▋ | 848/1261 [2:24:24<58:30, 8.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03907513618469238s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3946709632873535s
Forwarding 1 inputs ...
Total time = 0.7997481822967529s / 1 inps = 1.2503935890521876 ips
Post processing 1 inputs ...
Total time = 0.3071911334991455s / 1 inps = 3.2553022888688994 ips
67%|██████▋ | 849/1261 [2:24:32<56:05, 8.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037806034088134766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.361825942993164s
Forwarding 1 inputs ...
Total time = 0.8013250827789307s / 1 inps = 1.2479329818705795 ips
Post processing 1 inputs ...
Total time = 0.3113398551940918s / 1 inps = 3.211924150785616 ips
67%|██████▋ | 850/1261 [2:24:39<53:47, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025300025939941406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.394979953765869s
Forwarding 1 inputs ...
Total time = 0.7962977886199951s / 1 inps = 1.2558115999958084 ips
Post processing 1 inputs ...
Total time = 0.30642080307006836s / 1 inps = 3.2634859969717294 ips
67%|██████▋ | 851/1261 [2:24:46<52:05, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014082193374633789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.736217975616455s
Forwarding 1 inputs ...
Total time = 0.7860710620880127s / 1 inps = 1.272149616274813 ips
Post processing 1 inputs ...
Total time = 0.2949950695037842s / 1 inps = 3.3898871655113276 ips
68%|██████▊ | 852/1261 [2:24:54<52:31, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02533102035522461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5720489025115967s
Forwarding 1 inputs ...
Total time = 1.0610640048980713s / 1 inps = 0.9424502154288635 ips
Post processing 1 inputs ...
Total time = 0.36440610885620117s / 1 inps = 2.7441910980548667 ips
68%|██████▊ | 853/1261 [2:25:02<52:27, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023793935775756836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.770623207092285s
Forwarding 1 inputs ...
Total time = 0.8909921646118164s / 1 inps = 1.122344325480882 ips
Post processing 1 inputs ...
Total time = 0.295137882232666s / 1 inps = 3.3882468507098324 ips
68%|██████▊ | 854/1261 [2:25:10<52:51, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04490494728088379s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3661298751831055s
Forwarding 1 inputs ...
Total time = 0.8869259357452393s / 1 inps = 1.1274898609879418 ips
Post processing 1 inputs ...
Total time = 0.3002641201019287s / 1 inps = 3.3304012469439788 ips
68%|██████▊ | 855/1261 [2:25:17<51:48, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018475055694580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.399693012237549s
Forwarding 1 inputs ...
Total time = 1.1268038749694824s / 1 inps = 0.8874658866673523 ips
Post processing 1 inputs ...
Total time = 0.33667683601379395s / 1 inps = 2.970207311675666 ips
68%|██████▊ | 856/1261 [2:25:25<51:53, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02591705322265625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4193081855773926s
Forwarding 1 inputs ...
Total time = 0.8253710269927979s / 1 inps = 1.2115763302759184 ips
Post processing 1 inputs ...
Total time = 0.2829601764678955s / 1 inps = 3.5340662155455624 ips
68%|██████▊ | 857/1261 [2:25:32<50:47, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05831193923950195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.35668683052063s
Forwarding 1 inputs ...
Total time = 0.8163208961486816s / 1 inps = 1.2250084552752447 ips
Post processing 1 inputs ...
Total time = 0.2920379638671875s / 1 inps = 3.4242123412926486 ips
68%|██████▊ | 858/1261 [2:25:39<49:52, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017407894134521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.361018180847168s
Forwarding 1 inputs ...
Total time = 0.8276300430297852s / 1 inps = 1.2082693329246526 ips
Post processing 1 inputs ...
Total time = 0.2877528667449951s / 1 inps = 3.4752043005229 ips
68%|██████▊ | 859/1261 [2:25:47<49:35, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.013339042663574219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.440403938293457s
Forwarding 1 inputs ...
Total time = 0.9127500057220459s / 1 inps = 1.095590242378507 ips
Post processing 1 inputs ...
Total time = 0.31220197677612305s / 1 inps = 3.203054670973753 ips
68%|██████▊ | 860/1261 [2:25:54<49:34, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09291481971740723s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7681498527526855s
Forwarding 1 inputs ...
Total time = 0.7852668762207031s / 1 inps = 1.2734524150728919 ips
Post processing 1 inputs ...
Total time = 0.30060386657714844s / 1 inps = 3.3266371833023483 ips
68%|██████▊ | 861/1261 [2:26:02<50:36, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.046862125396728516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3601109981536865s
Forwarding 1 inputs ...
Total time = 0.7972829341888428s / 1 inps = 1.2542598833090564 ips
Post processing 1 inputs ...
Total time = 0.3060150146484375s / 1 inps = 3.267813512839691 ips
68%|██████▊ | 862/1261 [2:26:09<49:43, 7.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021748781204223633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.371696949005127s
Forwarding 1 inputs ...
Total time = 0.7896938323974609s / 1 inps = 1.2663135495994222 ips
Post processing 1 inputs ...
Total time = 0.2981269359588623s / 1 inps = 3.35427591198263 ips
68%|██████▊ | 863/1261 [2:26:16<48:47, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023710966110229492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4026670455932617s
Forwarding 1 inputs ...
Total time = 0.7703111171722412s / 1 inps = 1.2981767726148505 ips
Post processing 1 inputs ...
Total time = 0.29615306854248047s / 1 inps = 3.3766322426490714 ips
69%|██████▊ | 864/1261 [2:26:23<48:23, 7.31s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02357792854309082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3710169792175293s
Forwarding 1 inputs ...
Total time = 0.7795090675354004s / 1 inps = 1.282858714090053 ips
Post processing 1 inputs ...
Total time = 0.2727539539337158s / 1 inps = 3.6663079877588802 ips
69%|██████▊ | 865/1261 [2:26:31<47:48, 7.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02375197410583496s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.32269287109375s
Forwarding 1 inputs ...
Total time = 0.7976069450378418s / 1 inps = 1.2537503669210852 ips
Post processing 1 inputs ...
Total time = 0.3164198398590088s / 1 inps = 3.1603580876773805 ips
69%|██████▊ | 866/1261 [2:26:38<47:23, 7.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025310993194580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3282129764556885s
Forwarding 1 inputs ...
Total time = 0.7863938808441162s / 1 inps = 1.2716273922764998 ips
Post processing 1 inputs ...
Total time = 0.31180810928344727s / 1 inps = 3.207100682205016 ips
69%|██████▉ | 867/1261 [2:26:45<47:07, 7.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02691197395324707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.378082036972046s
Forwarding 1 inputs ...
Total time = 0.7755570411682129s / 1 inps = 1.2893958109047803 ips
Post processing 1 inputs ...
Total time = 0.312424898147583s / 1 inps = 3.200769227834143 ips
69%|██████▉ | 868/1261 [2:26:52<46:53, 7.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04538607597351074s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3570711612701416s
Forwarding 1 inputs ...
Total time = 0.7878968715667725s / 1 inps = 1.2692016380410927 ips
Post processing 1 inputs ...
Total time = 0.2807018756866455s / 1 inps = 3.5624984605244494 ips
69%|██████▉ | 869/1261 [2:26:59<46:34, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030326128005981445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3972420692443848s
Forwarding 1 inputs ...
Total time = 0.7713229656219482s / 1 inps = 1.296473778910058 ips
Post processing 1 inputs ...
Total time = 0.2953639030456543s / 1 inps = 3.385654068382995 ips
69%|██████▉ | 870/1261 [2:27:06<46:26, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0257108211517334s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.318253993988037s
Forwarding 1 inputs ...
Total time = 0.762340784072876s / 1 inps = 1.3117493132892717 ips
Post processing 1 inputs ...
Total time = 0.30873990058898926s / 1 inps = 3.2389723456290556 ips
69%|██████▉ | 871/1261 [2:27:13<46:16, 7.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014230966567993164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3917059898376465s
Forwarding 1 inputs ...
Total time = 0.7781620025634766s / 1 inps = 1.2850794522293931 ips
Post processing 1 inputs ...
Total time = 0.2885110378265381s / 1 inps = 3.4660718963592356 ips
69%|██████▉ | 872/1261 [2:27:20<46:13, 7.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028059959411621094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3363850116729736s
Forwarding 1 inputs ...
Total time = 0.7834169864654541s / 1 inps = 1.2764594300050915 ips
Post processing 1 inputs ...
Total time = 0.29820895195007324s / 1 inps = 3.3533533901672476 ips
69%|██████▉ | 873/1261 [2:27:27<46:00, 7.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03662109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.36879301071167s
Forwarding 1 inputs ...
Total time = 0.7716200351715088s / 1 inps = 1.2959746435014858 ips
Post processing 1 inputs ...
Total time = 0.3125300407409668s / 1 inps = 3.1996924123810118 ips
69%|██████▉ | 874/1261 [2:27:35<45:54, 7.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03777003288269043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4017879962921143s
Forwarding 1 inputs ...
Total time = 0.7863888740539551s / 1 inps = 1.271635488489107 ips
Post processing 1 inputs ...
Total time = 0.29886317253112793s / 1 inps = 3.3460127975314373 ips
69%|██████▉ | 875/1261 [2:27:42<45:42, 7.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0387880802154541s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.43475604057312s
Forwarding 1 inputs ...
Total time = 0.8056948184967041s / 1 inps = 1.2411647401007715 ips
Post processing 1 inputs ...
Total time = 0.3102550506591797s / 1 inps = 3.223154620288572 ips
69%|██████▉ | 876/1261 [2:27:49<45:48, 7.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03627300262451172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3932149410247803s
Forwarding 1 inputs ...
Total time = 0.7746710777282715s / 1 inps = 1.2908704465029301 ips
Post processing 1 inputs ...
Total time = 0.2832660675048828s / 1 inps = 3.5302498771151347 ips
70%|██████▉ | 877/1261 [2:27:56<45:31, 7.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02669501304626465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.369072198867798s
Forwarding 1 inputs ...
Total time = 0.7653710842132568s / 1 inps = 1.3065557618079129 ips
Post processing 1 inputs ...
Total time = 0.2965559959411621s / 1 inps = 3.3720444492324613 ips
70%|██████▉ | 878/1261 [2:28:03<45:13, 7.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04427385330200195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4402310848236084s
Forwarding 1 inputs ...
Total time = 0.7947590351104736s / 1 inps = 1.2582430092927441 ips
Post processing 1 inputs ...
Total time = 0.29662203788757324s / 1 inps = 3.3712936743392734 ips
70%|██████▉ | 879/1261 [2:28:10<45:08, 7.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026389122009277344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4526240825653076s
Forwarding 1 inputs ...
Total time = 0.7487380504608154s / 1 inps = 1.3355805803973015 ips
Post processing 1 inputs ...
Total time = 0.29412198066711426s / 1 inps = 3.399949904226284 ips
70%|██████▉ | 880/1261 [2:28:17<44:56, 7.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020901918411254883s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.325993061065674s
Forwarding 1 inputs ...
Total time = 0.7867879867553711s / 1 inps = 1.2709904279600053 ips
Post processing 1 inputs ...
Total time = 0.3063850402832031s / 1 inps = 3.2638669273005716 ips
70%|██████▉ | 881/1261 [2:28:24<44:48, 7.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04017496109008789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.400156021118164s
Forwarding 1 inputs ...
Total time = 0.764923095703125s / 1 inps = 1.3073209654897266 ips
Post processing 1 inputs ...
Total time = 0.3029019832611084s / 1 inps = 3.301397994274528 ips
70%|██████▉ | 882/1261 [2:28:31<44:37, 7.07s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03125309944152832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3552157878875732s
Forwarding 1 inputs ...
Total time = 0.7958359718322754s / 1 inps = 1.2565403366948493 ips
Post processing 1 inputs ...
Total time = 0.2812519073486328s / 1 inps = 3.555531443064758 ips
70%|███████ | 883/1261 [2:28:38<44:20, 7.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026618003845214844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8786771297454834s
Forwarding 1 inputs ...
Total time = 0.8909389972686768s / 1 inps = 1.1224113020820372 ips
Post processing 1 inputs ...
Total time = 0.3250620365142822s / 1 inps = 3.0763358610659015 ips
70%|███████ | 884/1261 [2:28:46<45:39, 7.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01699209213256836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.3621251583099365s
Forwarding 1 inputs ...
Total time = 0.947343111038208s / 1 inps = 1.0555837566645567 ips
Post processing 1 inputs ...
Total time = 0.38371801376342773s / 1 inps = 2.6060804135625655 ips
70%|███████ | 885/1261 [2:28:55<49:47, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05297088623046875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1249380111694336s
Forwarding 1 inputs ...
Total time = 0.9566378593444824s / 1 inps = 1.0453276443451973 ips
Post processing 1 inputs ...
Total time = 0.4325978755950928s / 1 inps = 2.311615605195412 ips
70%|███████ | 886/1261 [2:29:05<52:09, 8.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04943394660949707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4227240085601807s
Forwarding 1 inputs ...
Total time = 0.7703518867492676s / 1 inps = 1.2981080687941222 ips
Post processing 1 inputs ...
Total time = 0.28749704360961914s / 1 inps = 3.4782966372268525 ips
70%|███████ | 887/1261 [2:29:12<49:59, 8.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02554798126220703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4094929695129395s
Forwarding 1 inputs ...
Total time = 0.8736820220947266s / 1 inps = 1.1445811802358201 ips
Post processing 1 inputs ...
Total time = 0.30903100967407227s / 1 inps = 3.235921214038282 ips
70%|███████ | 888/1261 [2:29:19<48:31, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026200056076049805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5922701358795166s
Forwarding 1 inputs ...
Total time = 1.231266975402832s / 1 inps = 0.812171543602744 ips
Post processing 1 inputs ...
Total time = 0.5111711025238037s / 1 inps = 1.9562921203149057 ips
70%|███████ | 889/1261 [2:29:27<48:56, 7.89s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.049147844314575195s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.810336112976074s
Forwarding 1 inputs ...
Total time = 1.2335929870605469s / 1 inps = 0.8106401467009299 ips
Post processing 1 inputs ...
Total time = 1.014237880706787s / 1 inps = 0.9859619907936537 ips
71%|███████ | 890/1261 [2:29:38<54:35, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.13353610038757324s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.153008937835693s
Forwarding 1 inputs ...
Total time = 1.2640290260314941s / 1 inps = 0.7911210734927255 ips
Post processing 1 inputs ...
Total time = 0.43039417266845703s / 1 inps = 2.323451532347591 ips
71%|███████ | 891/1261 [2:29:50<59:51, 9.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06800079345703125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.359463930130005s
Forwarding 1 inputs ...
Total time = 1.1074409484863281s / 1 inps = 0.9029826839677723 ips
Post processing 1 inputs ...
Total time = 0.343472957611084s / 1 inps = 2.9114373572673067 ips
71%|███████ | 892/1261 [2:30:00<1:00:10, 9.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0503840446472168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.206289052963257s
Forwarding 1 inputs ...
Total time = 1.1120481491088867s / 1 inps = 0.8992416387737583 ips
Post processing 1 inputs ...
Total time = 0.38485288619995117s / 1 inps = 2.5983954800859874 ips
71%|███████ | 893/1261 [2:30:09<58:40, 9.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021937131881713867s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.126459121704102s
Forwarding 1 inputs ...
Total time = 1.4102048873901367s / 1 inps = 0.7091168162455442 ips
Post processing 1 inputs ...
Total time = 0.5857019424438477s / 1 inps = 1.7073530537178847 ips
71%|███████ | 894/1261 [2:30:20<1:01:10, 10.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02891397476196289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.393592834472656s
Forwarding 1 inputs ...
Total time = 1.4108400344848633s / 1 inps = 0.7087975784335662 ips
Post processing 1 inputs ...
Total time = 0.43340015411376953s / 1 inps = 2.3073365122465908 ips
71%|███████ | 895/1261 [2:30:32<1:03:43, 10.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04170989990234375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5435547828674316s
Forwarding 1 inputs ...
Total time = 1.0094249248504639s / 1 inps = 0.990663074966313 ips
Post processing 1 inputs ...
Total time = 0.42417192459106445s / 1 inps = 2.3575346269418462 ips
71%|███████ | 896/1261 [2:30:40<1:00:03, 9.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.09109306335449219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.766785144805908s
Forwarding 1 inputs ...
Total time = 0.8146538734436035s / 1 inps = 1.2275151847899826 ips
Post processing 1 inputs ...
Total time = 0.31174302101135254s / 1 inps = 3.20777028706469 ips
71%|███████ | 897/1261 [2:30:48<56:54, 9.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026306867599487305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.592970132827759s
Forwarding 1 inputs ...
Total time = 0.8232059478759766s / 1 inps = 1.2147628458955924 ips
Post processing 1 inputs ...
Total time = 0.320296049118042s / 1 inps = 3.122111567574971 ips
71%|███████ | 898/1261 [2:30:56<53:41, 8.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.014372110366821289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.650085926055908s
Forwarding 1 inputs ...
Total time = 0.8937220573425293s / 1 inps = 1.1189161012468314 ips
Post processing 1 inputs ...
Total time = 0.35540318489074707s / 1 inps = 2.8137057924998774 ips
71%|███████▏ | 899/1261 [2:31:04<51:35, 8.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01597285270690918s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4862239360809326s
Forwarding 1 inputs ...
Total time = 0.8011970520019531s / 1 inps = 1.248132400763704 ips
Post processing 1 inputs ...
Total time = 0.28777194023132324s / 1 inps = 3.4749739644391937 ips
71%|███████▏ | 900/1261 [2:31:11<49:33, 8.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028057098388671875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5267550945281982s
Forwarding 1 inputs ...
Total time = 0.8811709880828857s / 1 inps = 1.1348535227829548 ips
Post processing 1 inputs ...
Total time = 0.32183313369750977s / 1 inps = 3.107200270249047 ips
71%|███████▏ | 901/1261 [2:31:19<48:41, 8.11s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02563309669494629s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6614389419555664s
Forwarding 1 inputs ...
Total time = 0.8846158981323242s / 1 inps = 1.1304341263946132 ips
Post processing 1 inputs ...
Total time = 0.29305219650268555s / 1 inps = 3.412361387951023 ips
72%|███████▏ | 902/1261 [2:31:27<47:54, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028410911560058594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4437780380249023s
Forwarding 1 inputs ...
Total time = 0.9231688976287842s / 1 inps = 1.083225401731537 ips
Post processing 1 inputs ...
Total time = 0.33694911003112793s / 1 inps = 2.9678072154801605 ips
72%|███████▏ | 903/1261 [2:31:35<47:33, 7.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04106402397155762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 4.116366147994995s
Forwarding 1 inputs ...
Total time = 1.0799951553344727s / 1 inps = 0.9259300794643859 ips
Post processing 1 inputs ...
Total time = 0.5338349342346191s / 1 inps = 1.8732382162919718 ips
72%|███████▏ | 904/1261 [2:31:46<52:11, 8.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03506207466125488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.706523895263672s
Forwarding 1 inputs ...
Total time = 1.235701084136963s / 1 inps = 0.8092572004971729 ips
Post processing 1 inputs ...
Total time = 0.45674705505371094s / 1 inps = 2.1893956160974164 ips
72%|███████▏ | 905/1261 [2:31:55<52:58, 8.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05556893348693848s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.683993101119995s
Forwarding 1 inputs ...
Total time = 1.0399558544158936s / 1 inps = 0.961579278345103 ips
Post processing 1 inputs ...
Total time = 0.3041880130767822s / 1 inps = 3.2874405203717973 ips
72%|███████▏ | 906/1261 [2:32:03<51:43, 8.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03248190879821777s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8085060119628906s
Forwarding 1 inputs ...
Total time = 0.7994849681854248s / 1 inps = 1.2508052556256064 ips
Post processing 1 inputs ...
Total time = 0.44943904876708984s / 1 inps = 2.224995809205319 ips
72%|███████▏ | 907/1261 [2:32:12<51:08, 8.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0267791748046875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.269167900085449s
Forwarding 1 inputs ...
Total time = 1.1206920146942139s / 1 inps = 0.8923058136296749 ips
Post processing 1 inputs ...
Total time = 0.31029796600341797s / 1 inps = 3.2227088462094042 ips
72%|███████▏ | 908/1261 [2:32:21<52:44, 8.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035073041915893555s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7414438724517822s
Forwarding 1 inputs ...
Total time = 0.8645341396331787s / 1 inps = 1.1566923203568333 ips
Post processing 1 inputs ...
Total time = 0.3226180076599121s / 1 inps = 3.099640987970363 ips
72%|███████▏ | 909/1261 [2:32:29<51:01, 8.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03686094284057617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5456290245056152s
Forwarding 1 inputs ...
Total time = 0.9148550033569336s / 1 inps = 1.0930693894995804 ips
Post processing 1 inputs ...
Total time = 0.3004429340362549s / 1 inps = 3.328419099646153 ips
72%|███████▏ | 910/1261 [2:32:37<49:02, 8.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022861003875732422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.450345993041992s
Forwarding 1 inputs ...
Total time = 0.8038969039916992s / 1 inps = 1.2439406036203937 ips
Post processing 1 inputs ...
Total time = 0.3539290428161621s / 1 inps = 2.825425096632774 ips
72%|███████▏ | 911/1261 [2:32:45<47:41, 8.18s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023622989654541016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6638360023498535s
Forwarding 1 inputs ...
Total time = 0.8830080032348633s / 1 inps = 1.1324925666998955 ips
Post processing 1 inputs ...
Total time = 0.3159830570220947s / 1 inps = 3.164726645232995 ips
72%|███████▏ | 912/1261 [2:32:52<46:42, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03799295425415039s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4591758251190186s
Forwarding 1 inputs ...
Total time = 0.9852569103240967s / 1 inps = 1.0149637008595591 ips
Post processing 1 inputs ...
Total time = 0.36810994148254395s / 1 inps = 2.7165797152137516 ips
72%|███████▏ | 913/1261 [2:33:00<46:24, 8.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03414607048034668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5221059322357178s
Forwarding 1 inputs ...
Total time = 0.85906982421875s / 1 inps = 1.1640497335701598 ips
Post processing 1 inputs ...
Total time = 0.3281869888305664s / 1 inps = 3.047043405234665 ips
72%|███████▏ | 914/1261 [2:33:08<45:21, 7.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03714299201965332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.56402587890625s
Forwarding 1 inputs ...
Total time = 0.8609449863433838s / 1 inps = 1.1615144008761957 ips
Post processing 1 inputs ...
Total time = 0.31752490997314453s / 1 inps = 3.1493592111704793 ips
73%|███████▎ | 915/1261 [2:33:15<44:46, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021457910537719727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.676042079925537s
Forwarding 1 inputs ...
Total time = 1.0025441646575928s / 1 inps = 0.9974622916902003 ips
Post processing 1 inputs ...
Total time = 0.4451789855957031s / 1 inps = 2.246287521100933 ips
73%|███████▎ | 916/1261 [2:33:24<45:29, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08960318565368652s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7092859745025635s
Forwarding 1 inputs ...
Total time = 0.8165450096130371s / 1 inps = 1.2246722326720272 ips
Post processing 1 inputs ...
Total time = 0.3194599151611328s / 1 inps = 3.130283182776182 ips
73%|███████▎ | 917/1261 [2:33:32<45:51, 8.00s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06093287467956543s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8922080993652344s
Forwarding 1 inputs ...
Total time = 0.957129955291748s / 1 inps = 1.0447902027005147 ips
Post processing 1 inputs ...
Total time = 0.30448293685913086s / 1 inps = 3.2842562881040864 ips
73%|███████▎ | 918/1261 [2:33:41<47:37, 8.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.057676076889038086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7505459785461426s
Forwarding 1 inputs ...
Total time = 0.9016869068145752s / 1 inps = 1.1090324063069068 ips
Post processing 1 inputs ...
Total time = 0.31235313415527344s / 1 inps = 3.2015046133742056 ips
73%|███████▎ | 919/1261 [2:33:49<46:48, 8.21s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030183076858520508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6613240242004395s
Forwarding 1 inputs ...
Total time = 0.8473269939422607s / 1 inps = 1.180181921677504 ips
Post processing 1 inputs ...
Total time = 0.3092200756072998s / 1 inps = 3.2339426799376696 ips
73%|███████▎ | 920/1261 [2:33:56<45:32, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02986598014831543s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6681549549102783s
Forwarding 1 inputs ...
Total time = 0.8460640907287598s / 1 inps = 1.181943556000169 ips
Post processing 1 inputs ...
Total time = 0.3121209144592285s / 1 inps = 3.203886550609947 ips
73%|███████▎ | 921/1261 [2:34:04<45:01, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029507160186767578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4263620376586914s
Forwarding 1 inputs ...
Total time = 0.7857508659362793s / 1 inps = 1.272668021572496 ips
Post processing 1 inputs ...
Total time = 0.31192994117736816s / 1 inps = 3.205848070324819 ips
73%|███████▎ | 922/1261 [2:34:11<43:38, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02631211280822754s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5950028896331787s
Forwarding 1 inputs ...
Total time = 0.9292559623718262s / 1 inps = 1.0761297645565893 ips
Post processing 1 inputs ...
Total time = 0.3120889663696289s / 1 inps = 3.204214527775486 ips
73%|███████▎ | 923/1261 [2:34:19<43:34, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03957819938659668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.918783187866211s
Forwarding 1 inputs ...
Total time = 1.4067018032073975s / 1 inps = 0.7108827170903717 ips
Post processing 1 inputs ...
Total time = 0.4350440502166748s / 1 inps = 2.298617805488772 ips
73%|███████▎ | 924/1261 [2:34:28<45:10, 8.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05433201789855957s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.611543893814087s
Forwarding 1 inputs ...
Total time = 0.8794589042663574s / 1 inps = 1.137062795258407 ips
Post processing 1 inputs ...
Total time = 0.4376552104949951s / 1 inps = 2.2849036776438325 ips
73%|███████▎ | 925/1261 [2:34:36<45:22, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02632284164428711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.712772846221924s
Forwarding 1 inputs ...
Total time = 0.8579921722412109s / 1 inps = 1.1655117987706602 ips
Post processing 1 inputs ...
Total time = 0.3249809741973877s / 1 inps = 3.0771032134103264 ips
73%|███████▎ | 926/1261 [2:34:44<44:47, 8.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02927684783935547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0095391273498535s
Forwarding 1 inputs ...
Total time = 1.0007941722869873s / 1 inps = 0.9992064579221395 ips
Post processing 1 inputs ...
Total time = 0.32233715057373047s / 1 inps = 3.1023417506176125 ips
74%|███████▎ | 927/1261 [2:34:53<45:22, 8.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03561997413635254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.580061197280884s
Forwarding 1 inputs ...
Total time = 0.8563899993896484s / 1 inps = 1.1676922905600284 ips
Post processing 1 inputs ...
Total time = 0.31531810760498047s / 1 inps = 3.1714004869417938 ips
74%|███████▎ | 928/1261 [2:35:00<44:58, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.051756858825683594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4699268341064453s
Forwarding 1 inputs ...
Total time = 0.8141989707946777s / 1 inps = 1.2282010121235796 ips
Post processing 1 inputs ...
Total time = 0.3255150318145752s / 1 inps = 3.0720547509757865 ips
74%|███████▎ | 929/1261 [2:35:08<43:56, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.034986019134521484s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.561112880706787s
Forwarding 1 inputs ...
Total time = 0.7998719215393066s / 1 inps = 1.250200154639206 ips
Post processing 1 inputs ...
Total time = 0.3094010353088379s / 1 inps = 3.2320512405584556 ips
74%|███████▍ | 930/1261 [2:35:16<43:08, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017322063446044922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6521081924438477s
Forwarding 1 inputs ...
Total time = 0.7701010704040527s / 1 inps = 1.2985308531973927 ips
Post processing 1 inputs ...
Total time = 0.3153200149536133s / 1 inps = 3.1713813033629026 ips
74%|███████▍ | 931/1261 [2:35:23<42:41, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028709888458251953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5015060901641846s
Forwarding 1 inputs ...
Total time = 0.8544538021087646s / 1 inps = 1.170338288075999 ips
Post processing 1 inputs ...
Total time = 0.340134859085083s / 1 inps = 2.9400103320484865 ips
74%|███████▍ | 932/1261 [2:35:31<42:08, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025239944458007812s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4433529376983643s
Forwarding 1 inputs ...
Total time = 0.8350989818572998s / 1 inps = 1.1974628418010431 ips
Post processing 1 inputs ...
Total time = 0.29409098625183105s / 1 inps = 3.400308226868595 ips
74%|███████▍ | 933/1261 [2:35:38<41:39, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031193017959594727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5562000274658203s
Forwarding 1 inputs ...
Total time = 0.8719069957733154s / 1 inps = 1.146911316055075 ips
Post processing 1 inputs ...
Total time = 0.28969597816467285s / 1 inps = 3.4518946598270226 ips
74%|███████▍ | 934/1261 [2:35:46<41:44, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.018579959869384766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4308559894561768s
Forwarding 1 inputs ...
Total time = 0.789902925491333s / 1 inps = 1.2659783471215569 ips
Post processing 1 inputs ...
Total time = 0.2987370491027832s / 1 inps = 3.3474254465703748 ips
74%|███████▍ | 935/1261 [2:35:53<41:11, 7.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027936935424804688s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6914970874786377s
Forwarding 1 inputs ...
Total time = 0.9054789543151855s / 1 inps = 1.1043878990608906 ips
Post processing 1 inputs ...
Total time = 0.3224480152130127s / 1 inps = 3.1012750980631374 ips
74%|███████▍ | 936/1261 [2:36:01<41:13, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02212810516357422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6881330013275146s
Forwarding 1 inputs ...
Total time = 0.8444719314575195s / 1 inps = 1.1841719810320352 ips
Post processing 1 inputs ...
Total time = 0.30306386947631836s / 1 inps = 3.299634501888853 ips
74%|███████▍ | 937/1261 [2:36:09<41:58, 7.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02582097053527832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5292317867279053s
Forwarding 1 inputs ...
Total time = 0.8482928276062012s / 1 inps = 1.1788382118258638 ips
Post processing 1 inputs ...
Total time = 0.3236429691314697s / 1 inps = 3.0898245763954217 ips
74%|███████▍ | 938/1261 [2:36:17<41:24, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024966955184936523s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4202001094818115s
Forwarding 1 inputs ...
Total time = 0.813633918762207s / 1 inps = 1.2290539724810323 ips
Post processing 1 inputs ...
Total time = 0.3096928596496582s / 1 inps = 3.229005670751517 ips
74%|███████▍ | 939/1261 [2:36:24<41:08, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031059980392456055s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.521003007888794s
Forwarding 1 inputs ...
Total time = 0.7919809818267822s / 1 inps = 1.2626565826030334 ips
Post processing 1 inputs ...
Total time = 0.33223700523376465s / 1 inps = 3.0098995122364287 ips
75%|███████▍ | 940/1261 [2:36:32<40:55, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029274940490722656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6544229984283447s
Forwarding 1 inputs ...
Total time = 0.8787190914154053s / 1 inps = 1.1380201133325103 ips
Post processing 1 inputs ...
Total time = 0.3157839775085449s / 1 inps = 3.166721782054128 ips
75%|███████▍ | 941/1261 [2:36:40<40:50, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024799108505249023s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5379860401153564s
Forwarding 1 inputs ...
Total time = 1.0065529346466064s / 1 inps = 0.9934897267485419 ips
Post processing 1 inputs ...
Total time = 0.29891300201416016s / 1 inps = 3.3454550095235662 ips
75%|███████▍ | 942/1261 [2:36:47<40:57, 7.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028389930725097656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1717488765716553s
Forwarding 1 inputs ...
Total time = 0.8809020519256592s / 1 inps = 1.1351999893904114 ips
Post processing 1 inputs ...
Total time = 0.33639001846313477s / 1 inps = 2.972739811272345 ips
75%|███████▍ | 943/1261 [2:36:56<41:59, 7.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02997112274169922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0255379676818848s
Forwarding 1 inputs ...
Total time = 0.9773740768432617s / 1 inps = 1.0231497066402824 ips
Post processing 1 inputs ...
Total time = 0.2953770160675049s / 1 inps = 3.3855037650304585 ips
75%|███████▍ | 944/1261 [2:37:05<43:42, 8.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05758404731750488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1754870414733887s
Forwarding 1 inputs ...
Total time = 1.6455178260803223s / 1 inps = 0.6077114353613737 ips
Post processing 1 inputs ...
Total time = 0.40267419815063477s / 1 inps = 2.483397259106018 ips
75%|███████▍ | 945/1261 [2:37:15<46:02, 8.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.1233358383178711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.956782817840576s
Forwarding 1 inputs ...
Total time = 0.8748700618743896s / 1 inps = 1.1430268831665382 ips
Post processing 1 inputs ...
Total time = 0.3465609550476074s / 1 inps = 2.885495279936048 ips
75%|███████▌ | 946/1261 [2:37:25<48:58, 9.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08342504501342773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.676980972290039s
Forwarding 1 inputs ...
Total time = 0.8483061790466309s / 1 inps = 1.1788196581614556 ips
Post processing 1 inputs ...
Total time = 0.29820799827575684s / 1 inps = 3.3533641142491657 ips
75%|███████▌ | 947/1261 [2:37:34<47:00, 8.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026092052459716797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.459986925125122s
Forwarding 1 inputs ...
Total time = 0.8601109981536865s / 1 inps = 1.1626406384136456 ips
Post processing 1 inputs ...
Total time = 0.3198509216308594s / 1 inps = 3.126456521998402 ips
75%|███████▌ | 948/1261 [2:37:41<44:46, 8.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05241513252258301s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.498041868209839s
Forwarding 1 inputs ...
Total time = 0.9917621612548828s / 1 inps = 1.008306264411917 ips
Post processing 1 inputs ...
Total time = 0.3547179698944092s / 1 inps = 2.8191410779038777 ips
75%|███████▌ | 949/1261 [2:37:51<46:53, 9.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03043198585510254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.596957206726074s
Forwarding 1 inputs ...
Total time = 0.8428518772125244s / 1 inps = 1.1864480901522045 ips
Post processing 1 inputs ...
Total time = 0.34325313568115234s / 1 inps = 2.9133018639890866 ips
75%|███████▌ | 950/1261 [2:37:59<45:15, 8.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038125038146972656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3874309062957764s
Forwarding 1 inputs ...
Total time = 0.8152639865875244s / 1 inps = 1.2265965582335248 ips
Post processing 1 inputs ...
Total time = 0.2945079803466797s / 1 inps = 3.395493727615976 ips
75%|███████▌ | 951/1261 [2:38:07<43:31, 8.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017154216766357422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.732722043991089s
Forwarding 1 inputs ...
Total time = 0.9930040836334229s / 1 inps = 1.0070452040247195 ips
Post processing 1 inputs ...
Total time = 0.30138707160949707s / 1 inps = 3.317992356671774 ips
75%|███████▌ | 952/1261 [2:38:15<42:50, 8.32s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.015964031219482422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6904261112213135s
Forwarding 1 inputs ...
Total time = 0.8076179027557373s / 1 inps = 1.2382093024285623 ips
Post processing 1 inputs ...
Total time = 0.3555459976196289s / 1 inps = 2.8125756067990464 ips
76%|███████▌ | 953/1261 [2:38:23<42:32, 8.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029773950576782227s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.925529956817627s
Forwarding 1 inputs ...
Total time = 1.1757619380950928s / 1 inps = 0.8505123083165518 ips
Post processing 1 inputs ...
Total time = 0.35817790031433105s / 1 inps = 2.7919087110690426 ips
76%|███████▌ | 954/1261 [2:38:33<43:55, 8.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03325700759887695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4743499755859375s
Forwarding 1 inputs ...
Total time = 0.8784921169281006s / 1 inps = 1.1383141416189215 ips
Post processing 1 inputs ...
Total time = 0.37500715255737305s / 1 inps = 2.6666158050065674 ips
76%|███████▌ | 955/1261 [2:38:41<43:00, 8.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03213191032409668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3727428913116455s
Forwarding 1 inputs ...
Total time = 0.9129810333251953s / 1 inps = 1.0953130059645055 ips
Post processing 1 inputs ...
Total time = 0.35883307456970215s / 1 inps = 2.7868111132151316 ips
76%|███████▌ | 956/1261 [2:38:48<41:47, 8.22s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.019520044326782227s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.370871067047119s
Forwarding 1 inputs ...
Total time = 0.8460550308227539s / 1 inps = 1.1819562127389527 ips
Post processing 1 inputs ...
Total time = 0.3732771873474121s / 1 inps = 2.6789743222890605 ips
76%|███████▌ | 957/1261 [2:38:56<40:34, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04714202880859375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.678760051727295s
Forwarding 1 inputs ...
Total time = 0.9800050258636475s / 1 inps = 1.0204029301979667 ips
Post processing 1 inputs ...
Total time = 0.29380011558532715s / 1 inps = 3.4036746309909947 ips
76%|███████▌ | 958/1261 [2:39:04<40:26, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03233003616333008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7664971351623535s
Forwarding 1 inputs ...
Total time = 1.223362922668457s / 1 inps = 0.8174189208045907 ips
Post processing 1 inputs ...
Total time = 0.41419315338134766s / 1 inps = 2.414332520555452 ips
76%|███████▌ | 959/1261 [2:39:14<43:31, 8.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05983614921569824s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.619236946105957s
Forwarding 1 inputs ...
Total time = 0.8826010227203369s / 1 inps = 1.1330147759378502 ips
Post processing 1 inputs ...
Total time = 0.3522529602050781s / 1 inps = 2.8388689747782676 ips
76%|███████▌ | 960/1261 [2:39:22<42:13, 8.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.045723915100097656s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9761269092559814s
Forwarding 1 inputs ...
Total time = 2.0346519947052s / 1 inps = 0.4914845401583722 ips
Post processing 1 inputs ...
Total time = 0.3384730815887451s / 1 inps = 2.954444694113164 ips
76%|███████▌ | 961/1261 [2:39:32<44:23, 8.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04575204849243164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.60487699508667s
Forwarding 1 inputs ...
Total time = 0.9896738529205322s / 1 inps = 1.0104338889513906 ips
Post processing 1 inputs ...
Total time = 0.3364131450653076s / 1 inps = 2.9725354513298545 ips
76%|███████▋ | 962/1261 [2:39:40<42:55, 8.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08444499969482422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5980448722839355s
Forwarding 1 inputs ...
Total time = 0.8425860404968262s / 1 inps = 1.1868224156791816 ips
Post processing 1 inputs ...
Total time = 0.33037495613098145s / 1 inps = 3.0268638147122053 ips
76%|███████▋ | 963/1261 [2:39:48<42:03, 8.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025938034057617188s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.680811882019043s
Forwarding 1 inputs ...
Total time = 0.8562960624694824s / 1 inps = 1.1678203880981166 ips
Post processing 1 inputs ...
Total time = 0.2975780963897705s / 1 inps = 3.3604623866206564 ips
76%|███████▋ | 964/1261 [2:39:56<41:49, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03263092041015625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.582772970199585s
Forwarding 1 inputs ...
Total time = 0.8237571716308594s / 1 inps = 1.2139499775403695 ips
Post processing 1 inputs ...
Total time = 0.3145480155944824s / 1 inps = 3.1791648664832373 ips
77%|███████▋ | 965/1261 [2:40:04<40:25, 8.19s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03791379928588867s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7143468856811523s
Forwarding 1 inputs ...
Total time = 0.8125641345977783s / 1 inps = 1.230672087803879 ips
Post processing 1 inputs ...
Total time = 0.3187887668609619s / 1 inps = 3.1368733906365804 ips
77%|███████▋ | 966/1261 [2:40:12<39:32, 8.04s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04966998100280762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.545984983444214s
Forwarding 1 inputs ...
Total time = 0.8279099464416504s / 1 inps = 1.2078608359495995 ips
Post processing 1 inputs ...
Total time = 0.34638094902038574s / 1 inps = 2.8869948039236606 ips
77%|███████▋ | 967/1261 [2:40:19<38:45, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020570993423461914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.408702850341797s
Forwarding 1 inputs ...
Total time = 0.8306689262390137s / 1 inps = 1.203849052747958 ips
Post processing 1 inputs ...
Total time = 0.3167991638183594s / 1 inps = 3.156573988223536 ips
77%|███████▋ | 968/1261 [2:40:27<37:49, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029616832733154297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4268529415130615s
Forwarding 1 inputs ...
Total time = 0.8094689846038818s / 1 inps = 1.2353777834852506 ips
Post processing 1 inputs ...
Total time = 0.2987790107727051s / 1 inps = 3.34695532130517 ips
77%|███████▋ | 969/1261 [2:40:34<37:02, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022874116897583008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4780068397521973s
Forwarding 1 inputs ...
Total time = 0.7975139617919922s / 1 inps = 1.2538965433947102 ips
Post processing 1 inputs ...
Total time = 0.3182549476623535s / 1 inps = 3.1421349686633335 ips
77%|███████▋ | 970/1261 [2:40:41<36:33, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02055215835571289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.470644950866699s
Forwarding 1 inputs ...
Total time = 0.8239650726318359s / 1 inps = 1.2136436764314402 ips
Post processing 1 inputs ...
Total time = 0.32723116874694824s / 1 inps = 3.0559436126737425 ips
77%|███████▋ | 971/1261 [2:40:49<36:18, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035334110260009766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.455610990524292s
Forwarding 1 inputs ...
Total time = 0.8150269985198975s / 1 inps = 1.2269532197289372 ips
Post processing 1 inputs ...
Total time = 0.3201131820678711s / 1 inps = 3.1238950971659074 ips
77%|███████▋ | 972/1261 [2:40:56<36:04, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02785801887512207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.460948944091797s
Forwarding 1 inputs ...
Total time = 0.7976758480072021s / 1 inps = 1.253642068389378 ips
Post processing 1 inputs ...
Total time = 0.3034801483154297s / 1 inps = 3.295108446304781 ips
77%|███████▋ | 973/1261 [2:41:04<35:41, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03478407859802246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4398651123046875s
Forwarding 1 inputs ...
Total time = 0.8146281242370605s / 1 inps = 1.227553984754147 ips
Post processing 1 inputs ...
Total time = 0.3136270046234131s / 1 inps = 3.1885009430254505 ips
77%|███████▋ | 974/1261 [2:41:11<35:26, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027148008346557617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3939568996429443s
Forwarding 1 inputs ...
Total time = 0.8024849891662598s / 1 inps = 1.2461292279609468 ips
Post processing 1 inputs ...
Total time = 0.3009049892425537s / 1 inps = 3.323308139613196 ips
77%|███████▋ | 975/1261 [2:41:18<35:07, 7.37s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028172969818115234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4328019618988037s
Forwarding 1 inputs ...
Total time = 0.7912228107452393s / 1 inps = 1.2638664942661564 ips
Post processing 1 inputs ...
Total time = 0.2983729839324951s / 1 inps = 3.351509868018893 ips
77%|███████▋ | 976/1261 [2:41:25<34:53, 7.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.045203208923339844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6087920665740967s
Forwarding 1 inputs ...
Total time = 0.8685450553894043s / 1 inps = 1.1513507489276524 ips
Post processing 1 inputs ...
Total time = 0.3064610958099365s / 1 inps = 3.2630569219793824 ips
77%|███████▋ | 977/1261 [2:41:33<35:13, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03960609436035156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4272308349609375s
Forwarding 1 inputs ...
Total time = 0.7834510803222656s / 1 inps = 1.2764038816420533 ips
Post processing 1 inputs ...
Total time = 0.32625317573547363s / 1 inps = 3.065104263723094 ips
78%|███████▊ | 978/1261 [2:41:41<34:58, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028905868530273438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.415092945098877s
Forwarding 1 inputs ...
Total time = 0.807135820388794s / 1 inps = 1.2389488543803002 ips
Post processing 1 inputs ...
Total time = 0.3113541603088379s / 1 inps = 3.2117765794684794 ips
78%|███████▊ | 979/1261 [2:41:48<34:48, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021399974822998047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.229867935180664s
Forwarding 1 inputs ...
Total time = 1.0366599559783936s / 1 inps = 0.9646364694932253 ips
Post processing 1 inputs ...
Total time = 0.500128984451294s / 1 inps = 1.999484195256408 ips
78%|███████▊ | 980/1261 [2:41:57<36:35, 7.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10922503471374512s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.543562173843384s
Forwarding 1 inputs ...
Total time = 0.8646509647369385s / 1 inps = 1.1565360368322033 ips
Post processing 1 inputs ...
Total time = 0.36342811584472656s / 1 inps = 2.7515757763421 ips
78%|███████▊ | 981/1261 [2:42:05<37:27, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05684208869934082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.746279001235962s
Forwarding 1 inputs ...
Total time = 0.8036289215087891s / 1 inps = 1.2443554148381446 ips
Post processing 1 inputs ...
Total time = 0.32476091384887695s / 1 inps = 3.079188280845078 ips
78%|███████▊ | 982/1261 [2:42:13<37:00, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028808116912841797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.580571174621582s
Forwarding 1 inputs ...
Total time = 0.8534121513366699s / 1 inps = 1.1717667699408012 ips
Post processing 1 inputs ...
Total time = 0.32062792778015137s / 1 inps = 3.118879902082895 ips
78%|███████▊ | 983/1261 [2:42:21<36:21, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05035901069641113s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.451798915863037s
Forwarding 1 inputs ...
Total time = 0.8239641189575195s / 1 inps = 1.2136450811295052 ips
Post processing 1 inputs ...
Total time = 0.3403890132904053s / 1 inps = 2.937815149594276 ips
78%|███████▊ | 984/1261 [2:42:28<35:41, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04423999786376953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4707798957824707s
Forwarding 1 inputs ...
Total time = 0.8170089721679688s / 1 inps = 1.2239767665542969 ips
Post processing 1 inputs ...
Total time = 0.3444499969482422s / 1 inps = 2.9031790067057606 ips
78%|███████▊ | 985/1261 [2:42:36<35:23, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03989219665527344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4781270027160645s
Forwarding 1 inputs ...
Total time = 0.8238420486450195s / 1 inps = 1.2138249093314781 ips
Post processing 1 inputs ...
Total time = 0.31209588050842285s / 1 inps = 3.204143541949161 ips
78%|███████▊ | 986/1261 [2:42:43<35:00, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04112386703491211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5448482036590576s
Forwarding 1 inputs ...
Total time = 0.802544116973877s / 1 inps = 1.246037418815881 ips
Post processing 1 inputs ...
Total time = 0.31261301040649414s / 1 inps = 3.198843191777876 ips
78%|███████▊ | 987/1261 [2:42:51<34:52, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05883193016052246s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1675491333007812s
Forwarding 1 inputs ...
Total time = 0.9146289825439453s / 1 inps = 1.093339506056985 ips
Post processing 1 inputs ...
Total time = 0.3163309097290039s / 1 inps = 3.1612465593598977 ips
78%|███████▊ | 988/1261 [2:42:59<35:42, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02888798713684082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.668282985687256s
Forwarding 1 inputs ...
Total time = 0.9053170680999756s / 1 inps = 1.1045853825541356 ips
Post processing 1 inputs ...
Total time = 0.2922940254211426s / 1 inps = 3.421212590846432 ips
78%|███████▊ | 989/1261 [2:43:07<35:22, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03058314323425293s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.546628952026367s
Forwarding 1 inputs ...
Total time = 0.7936019897460938s / 1 inps = 1.2600774858439323 ips
Post processing 1 inputs ...
Total time = 0.3232560157775879s / 1 inps = 3.093523248421267 ips
79%|███████▊ | 990/1261 [2:43:14<34:59, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021347999572753906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.486747980117798s
Forwarding 1 inputs ...
Total time = 0.822396993637085s / 1 inps = 1.2159577524444227 ips
Post processing 1 inputs ...
Total time = 0.3039059638977051s / 1 inps = 3.2904915295989405 ips
79%|███████▊ | 991/1261 [2:43:22<34:23, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028251171112060547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.469728946685791s
Forwarding 1 inputs ...
Total time = 0.807844877243042s / 1 inps = 1.2378614114788125 ips
Post processing 1 inputs ...
Total time = 0.3314790725708008s / 1 inps = 3.0167816998052253 ips
79%|███████▊ | 992/1261 [2:43:29<33:51, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023756980895996094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.41672682762146s
Forwarding 1 inputs ...
Total time = 0.7817881107330322s / 1 inps = 1.279118966214982 ips
Post processing 1 inputs ...
Total time = 0.28492188453674316s / 1 inps = 3.5097339104923733 ips
79%|███████▊ | 993/1261 [2:43:36<33:15, 7.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02303004264831543s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.479222059249878s
Forwarding 1 inputs ...
Total time = 0.7989389896392822s / 1 inps = 1.2516600303253393 ips
Post processing 1 inputs ...
Total time = 0.31569600105285645s / 1 inps = 3.1676042669687527 ips
79%|███████▉ | 994/1261 [2:43:44<32:51, 7.38s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030292034149169922s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.488247871398926s
Forwarding 1 inputs ...
Total time = 0.7745418548583984s / 1 inps = 1.2910858125063103 ips
Post processing 1 inputs ...
Total time = 0.3071880340576172s / 1 inps = 3.255335133960448 ips
79%|███████▉ | 995/1261 [2:43:51<32:34, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02246403694152832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.425800085067749s
Forwarding 1 inputs ...
Total time = 0.7908308506011963s / 1 inps = 1.264492905454803 ips
Post processing 1 inputs ...
Total time = 0.3281440734863281s / 1 inps = 3.047441903721184 ips
79%|███████▉ | 996/1261 [2:43:58<32:22, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025274038314819336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.456770181655884s
Forwarding 1 inputs ...
Total time = 0.8161518573760986s / 1 inps = 1.2252621751238393 ips
Post processing 1 inputs ...
Total time = 0.3117961883544922s / 1 inps = 3.2072232995454852 ips
79%|███████▉ | 997/1261 [2:44:06<32:18, 7.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05145001411437988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.451666831970215s
Forwarding 1 inputs ...
Total time = 0.7915880680084229s / 1 inps = 1.2632833166825344 ips
Post processing 1 inputs ...
Total time = 0.28262901306152344s / 1 inps = 3.5382071683571894 ips
79%|███████▉ | 998/1261 [2:44:13<32:07, 7.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029891014099121094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5033891201019287s
Forwarding 1 inputs ...
Total time = 0.8205740451812744s / 1 inps = 1.2186590666282753 ips
Post processing 1 inputs ...
Total time = 0.3112828731536865s / 1 inps = 3.2125121111506836 ips
79%|███████▉ | 999/1261 [2:44:20<32:06, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029481887817382812s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.1213130950927734s
Forwarding 1 inputs ...
Total time = 0.8481900691986084s / 1 inps = 1.1789810283263815 ips
Post processing 1 inputs ...
Total time = 0.29620790481567383s / 1 inps = 3.3760071346586327 ips
79%|███████▉ | 1000/1261 [2:44:28<32:50, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02600407600402832s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.462352991104126s
Forwarding 1 inputs ...
Total time = 0.8455789089202881s / 1 inps = 1.1826217393204506 ips
Post processing 1 inputs ...
Total time = 0.2973451614379883s / 1 inps = 3.363094913547303 ips
79%|███████▉ | 1001/1261 [2:44:36<32:34, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02707386016845703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4355649948120117s
Forwarding 1 inputs ...
Total time = 0.8330159187316895s / 1 inps = 1.2004572511922131 ips
Post processing 1 inputs ...
Total time = 0.3079211711883545s / 1 inps = 3.2475844260422835 ips
79%|███████▉ | 1002/1261 [2:44:43<32:15, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05380606651306152s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5174379348754883s
Forwarding 1 inputs ...
Total time = 0.8660731315612793s / 1 inps = 1.15463690485039 ips
Post processing 1 inputs ...
Total time = 0.3196749687194824s / 1 inps = 3.1281773609165775 ips
80%|███████▉ | 1003/1261 [2:44:50<32:03, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0412900447845459s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.482187032699585s
Forwarding 1 inputs ...
Total time = 0.8059921264648438s / 1 inps = 1.2407069091184462 ips
Post processing 1 inputs ...
Total time = 0.30159902572631836s / 1 inps = 3.315660578119491 ips
80%|███████▉ | 1004/1261 [2:44:58<31:43, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03908109664916992s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.469480037689209s
Forwarding 1 inputs ...
Total time = 0.86269211769104s / 1 inps = 1.1591620921221106 ips
Post processing 1 inputs ...
Total time = 0.33525800704956055s / 1 inps = 2.982777380324199 ips
80%|███████▉ | 1005/1261 [2:45:05<31:43, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028419017791748047s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4555587768554688s
Forwarding 1 inputs ...
Total time = 0.873464822769165s / 1 inps = 1.144865796460672 ips
Post processing 1 inputs ...
Total time = 0.29352402687072754s / 1 inps = 3.406876127521974 ips
80%|███████▉ | 1006/1261 [2:45:13<31:45, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026962995529174805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.493813991546631s
Forwarding 1 inputs ...
Total time = 0.839367151260376s / 1 inps = 1.1913737611704498 ips
Post processing 1 inputs ...
Total time = 0.3059968948364258s / 1 inps = 3.2680070186155374 ips
80%|███████▉ | 1007/1261 [2:45:20<31:34, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04580402374267578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3919880390167236s
Forwarding 1 inputs ...
Total time = 0.8391702175140381s / 1 inps = 1.1916533489026873 ips
Post processing 1 inputs ...
Total time = 0.3109748363494873s / 1 inps = 3.2156942720476445 ips
80%|███████▉ | 1008/1261 [2:45:28<31:23, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.042762041091918945s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4230329990386963s
Forwarding 1 inputs ...
Total time = 0.8407120704650879s / 1 inps = 1.1894678750678491 ips
Post processing 1 inputs ...
Total time = 0.3068959712982178s / 1 inps = 3.2584331288867827 ips
80%|████████ | 1009/1261 [2:45:35<31:15, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026261091232299805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.747709035873413s
Forwarding 1 inputs ...
Total time = 0.8416368961334229s / 1 inps = 1.1881608382357232 ips
Post processing 1 inputs ...
Total time = 0.3282511234283447s / 1 inps = 3.0464480656021093 ips
80%|████████ | 1010/1261 [2:45:43<31:25, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.033483028411865234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.484286069869995s
Forwarding 1 inputs ...
Total time = 0.8728458881378174s / 1 inps = 1.145677620288114 ips
Post processing 1 inputs ...
Total time = 0.299807071685791s / 1 inps = 3.33547836072405 ips
80%|████████ | 1011/1261 [2:45:50<31:26, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04378104209899902s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.450840950012207s
Forwarding 1 inputs ...
Total time = 0.9130651950836182s / 1 inps = 1.095212045519291 ips
Post processing 1 inputs ...
Total time = 0.29897403717041016s / 1 inps = 3.3447720392858624 ips
80%|████████ | 1012/1261 [2:45:58<31:16, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024245023727416992s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.776158094406128s
Forwarding 1 inputs ...
Total time = 1.0609488487243652s / 1 inps = 0.9425525096731597 ips
Post processing 1 inputs ...
Total time = 0.40263986587524414s / 1 inps = 2.4836090132958786 ips
80%|████████ | 1013/1261 [2:46:07<33:18, 8.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06818199157714844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5313830375671387s
Forwarding 1 inputs ...
Total time = 0.8111438751220703s / 1 inps = 1.2328269135355407 ips
Post processing 1 inputs ...
Total time = 0.3121209144592285s / 1 inps = 3.203886550609947 ips
80%|████████ | 1014/1261 [2:46:15<33:03, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03924298286437988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.828463077545166s
Forwarding 1 inputs ...
Total time = 0.9984447956085205s / 1 inps = 1.0015576268195496 ips
Post processing 1 inputs ...
Total time = 0.35958194732666016s / 1 inps = 2.7810072430904205 ips
80%|████████ | 1015/1261 [2:46:23<33:08, 8.09s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07977795600891113s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0659730434417725s
Forwarding 1 inputs ...
Total time = 0.8057849407196045s / 1 inps = 1.2410259232531105 ips
Post processing 1 inputs ...
Total time = 0.29366493225097656s / 1 inps = 3.4052414509791187 ips
81%|████████ | 1016/1261 [2:46:33<34:29, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04841494560241699s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4542620182037354s
Forwarding 1 inputs ...
Total time = 0.794482946395874s / 1 inps = 1.2586802580677687 ips
Post processing 1 inputs ...
Total time = 0.30016279220581055s / 1 inps = 3.331525512043934 ips
81%|████████ | 1017/1261 [2:46:40<33:06, 8.14s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030456066131591797s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.523787021636963s
Forwarding 1 inputs ...
Total time = 0.8090119361877441s / 1 inps = 1.2360757057704697 ips
Post processing 1 inputs ...
Total time = 0.3175230026245117s / 1 inps = 3.149378129251803 ips
81%|████████ | 1018/1261 [2:46:48<32:30, 8.02s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02174210548400879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4610819816589355s
Forwarding 1 inputs ...
Total time = 0.8041508197784424s / 1 inps = 1.2435478213844482 ips
Post processing 1 inputs ...
Total time = 0.30275416374206543s / 1 inps = 3.3030098996490116 ips
81%|████████ | 1019/1261 [2:46:55<31:43, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021733999252319336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4321300983428955s
Forwarding 1 inputs ...
Total time = 0.796489953994751s / 1 inps = 1.2555086162537967 ips
Post processing 1 inputs ...
Total time = 0.29054999351501465s / 1 inps = 3.4417484850101134 ips
81%|████████ | 1020/1261 [2:47:03<30:57, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027624130249023438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.421281099319458s
Forwarding 1 inputs ...
Total time = 0.812431812286377s / 1 inps = 1.2308725297028453 ips
Post processing 1 inputs ...
Total time = 0.303455114364624s / 1 inps = 3.2953802808491313 ips
81%|████████ | 1021/1261 [2:47:10<30:28, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03823590278625488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4392428398132324s
Forwarding 1 inputs ...
Total time = 0.7867729663848877s / 1 inps = 1.2710146925800727 ips
Post processing 1 inputs ...
Total time = 0.29641103744506836s / 1 inps = 3.373693532533594 ips
81%|████████ | 1022/1261 [2:47:17<29:59, 7.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02606201171875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3824241161346436s
Forwarding 1 inputs ...
Total time = 0.8066740036010742s / 1 inps = 1.2396581463340817 ips
Post processing 1 inputs ...
Total time = 0.321058988571167s / 1 inps = 3.1146924259942863 ips
81%|████████ | 1023/1261 [2:47:25<29:44, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029427766799926758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4526820182800293s
Forwarding 1 inputs ...
Total time = 0.8143339157104492s / 1 inps = 1.227997484456447 ips
Post processing 1 inputs ...
Total time = 0.29818201065063477s / 1 inps = 3.3536563718850596 ips
81%|████████ | 1024/1261 [2:47:32<29:28, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.055174827575683594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.41943097114563s
Forwarding 1 inputs ...
Total time = 0.7765419483184814s / 1 inps = 1.2877604386542068 ips
Post processing 1 inputs ...
Total time = 0.31203603744506836s / 1 inps = 3.204758040731249 ips
81%|████████▏ | 1025/1261 [2:47:40<29:15, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03505086898803711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3801071643829346s
Forwarding 1 inputs ...
Total time = 0.826171875s / 1 inps = 1.210401891252955 ips
Post processing 1 inputs ...
Total time = 0.30767107009887695s / 1 inps = 3.25022433756488 ips
81%|████████▏ | 1026/1261 [2:47:47<29:04, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02467799186706543s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.417062997817993s
Forwarding 1 inputs ...
Total time = 0.8008518218994141s / 1 inps = 1.2486704439633511 ips
Post processing 1 inputs ...
Total time = 0.3090329170227051s / 1 inps = 3.235901241959052 ips
81%|████████▏ | 1027/1261 [2:47:54<28:52, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026551008224487305s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.467339038848877s
Forwarding 1 inputs ...
Total time = 0.8048429489135742s / 1 inps = 1.2424784255734123 ips
Post processing 1 inputs ...
Total time = 0.30212998390197754s / 1 inps = 3.3098336917279885 ips
82%|████████▏ | 1028/1261 [2:48:02<28:43, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04032397270202637s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4292349815368652s
Forwarding 1 inputs ...
Total time = 0.7968459129333496s / 1 inps = 1.2549477681560786 ips
Post processing 1 inputs ...
Total time = 0.31066393852233887s / 1 inps = 3.2189123873097785 ips
82%|████████▏ | 1029/1261 [2:48:09<28:37, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025818824768066406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4037599563598633s
Forwarding 1 inputs ...
Total time = 0.8105318546295166s / 1 inps = 1.2337578027171885 ips
Post processing 1 inputs ...
Total time = 0.31168079376220703s / 1 inps = 3.208410720241355 ips
82%|████████▏ | 1030/1261 [2:48:17<28:31, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037893056869506836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.436678171157837s
Forwarding 1 inputs ...
Total time = 0.8115918636322021s / 1 inps = 1.2321464085711693 ips
Post processing 1 inputs ...
Total time = 0.3065199851989746s / 1 inps = 3.2624300152920185 ips
82%|████████▏ | 1031/1261 [2:48:24<28:41, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.050373077392578125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5844969749450684s
Forwarding 1 inputs ...
Total time = 0.7982590198516846s / 1 inps = 1.2527262143380462 ips
Post processing 1 inputs ...
Total time = 0.3271298408508301s / 1 inps = 3.056890185863527 ips
82%|████████▏ | 1032/1261 [2:48:32<28:38, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024419069290161133s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.545142889022827s
Forwarding 1 inputs ...
Total time = 0.8030169010162354s / 1 inps = 1.2453038021173382 ips
Post processing 1 inputs ...
Total time = 0.3272738456726074s / 1 inps = 3.055545113740506 ips
82%|████████▏ | 1033/1261 [2:48:39<28:35, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028656005859375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4027249813079834s
Forwarding 1 inputs ...
Total time = 0.8138270378112793s / 1 inps = 1.2287623211553864 ips
Post processing 1 inputs ...
Total time = 0.31604909896850586s / 1 inps = 3.164065340681922 ips
82%|████████▏ | 1034/1261 [2:48:47<28:20, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02643299102783203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4145748615264893s
Forwarding 1 inputs ...
Total time = 0.8023049831390381s / 1 inps = 1.2464088108832072 ips
Post processing 1 inputs ...
Total time = 0.30175304412841797s / 1 inps = 3.313968224872081 ips
82%|████████▏ | 1035/1261 [2:48:54<28:07, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03073596954345703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4671449661254883s
Forwarding 1 inputs ...
Total time = 0.9658160209655762s / 1 inps = 1.035393882781369 ips
Post processing 1 inputs ...
Total time = 0.44010400772094727s / 1 inps = 2.272190169724746 ips
82%|████████▏ | 1036/1261 [2:49:02<28:28, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025188922882080078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4194419384002686s
Forwarding 1 inputs ...
Total time = 0.9672269821166992s / 1 inps = 1.0338834818395777 ips
Post processing 1 inputs ...
Total time = 0.3796660900115967s / 1 inps = 2.633893377123713 ips
82%|████████▏ | 1037/1261 [2:49:10<28:28, 7.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0494379997253418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.416611909866333s
Forwarding 1 inputs ...
Total time = 0.8021321296691895s / 1 inps = 1.246677402652371 ips
Post processing 1 inputs ...
Total time = 0.31066393852233887s / 1 inps = 3.2189123873097785 ips
82%|████████▏ | 1038/1261 [2:49:17<28:13, 7.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023727893829345703s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4870409965515137s
Forwarding 1 inputs ...
Total time = 0.8202610015869141s / 1 inps = 1.2191241544646823 ips
Post processing 1 inputs ...
Total time = 0.33241701126098633s / 1 inps = 3.0082696315889885 ips
82%|████████▏ | 1039/1261 [2:49:25<28:00, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02938389778137207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.445000171661377s
Forwarding 1 inputs ...
Total time = 0.8083000183105469s / 1 inps = 1.2371643911256258 ips
Post processing 1 inputs ...
Total time = 0.3193089962005615s / 1 inps = 3.1317626872369386 ips
82%|████████▏ | 1040/1261 [2:49:33<28:37, 7.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.043161869049072266s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.481684923171997s
Forwarding 1 inputs ...
Total time = 0.8285892009735107s / 1 inps = 1.2068706650112002 ips
Post processing 1 inputs ...
Total time = 0.29909491539001465s / 1 inps = 3.3434202607423704 ips
83%|████████▎ | 1041/1261 [2:49:41<28:15, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03222298622131348s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4660680294036865s
Forwarding 1 inputs ...
Total time = 0.8110949993133545s / 1 inps = 1.2329012025059531 ips
Post processing 1 inputs ...
Total time = 0.31285715103149414s / 1 inps = 3.1963469484491145 ips
83%|████████▎ | 1042/1261 [2:49:48<27:54, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.044033050537109375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.440585136413574s
Forwarding 1 inputs ...
Total time = 0.787689208984375s / 1 inps = 1.2695362442369533 ips
Post processing 1 inputs ...
Total time = 0.3021550178527832s / 1 inps = 3.3095594675419977 ips
83%|████████▎ | 1043/1261 [2:49:56<27:37, 7.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0250699520111084s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.39750599861145s
Forwarding 1 inputs ...
Total time = 0.8175320625305176s / 1 inps = 1.223193616290335 ips
Post processing 1 inputs ...
Total time = 0.30934715270996094s / 1 inps = 3.232614204590997 ips
83%|████████▎ | 1044/1261 [2:50:03<27:23, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024573087692260742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4448790550231934s
Forwarding 1 inputs ...
Total time = 0.8017299175262451s / 1 inps = 1.2473028362038945 ips
Post processing 1 inputs ...
Total time = 0.3267037868499756s / 1 inps = 3.060876672541314 ips
83%|████████▎ | 1045/1261 [2:50:10<27:01, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02555990219116211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.384469985961914s
Forwarding 1 inputs ...
Total time = 0.8019258975982666s / 1 inps = 1.2469980119047868 ips
Post processing 1 inputs ...
Total time = 0.30623602867126465s / 1 inps = 3.2654550946827703 ips
83%|████████▎ | 1046/1261 [2:50:18<26:42, 7.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025020122528076172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4002790451049805s
Forwarding 1 inputs ...
Total time = 0.7947289943695068s / 1 inps = 1.2582905708547145 ips
Post processing 1 inputs ...
Total time = 0.3215751647949219s / 1 inps = 3.109692878919086 ips
83%|████████▎ | 1047/1261 [2:50:25<26:28, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029935836791992188s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.987529993057251s
Forwarding 1 inputs ...
Total time = 0.8494269847869873s / 1 inps = 1.1772642238941493 ips
Post processing 1 inputs ...
Total time = 0.32558608055114746s / 1 inps = 3.0713843733958597 ips
83%|████████▎ | 1048/1261 [2:50:33<27:18, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024785995483398438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.612276077270508s
Forwarding 1 inputs ...
Total time = 0.8529930114746094s / 1 inps = 1.1723425474157785 ips
Post processing 1 inputs ...
Total time = 0.3135409355163574s / 1 inps = 3.1893762080958963 ips
83%|████████▎ | 1049/1261 [2:50:41<27:03, 7.66s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024953126907348633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.608919858932495s
Forwarding 1 inputs ...
Total time = 0.8671360015869141s / 1 inps = 1.1532216378629607 ips
Post processing 1 inputs ...
Total time = 0.32877492904663086s / 1 inps = 3.0415944515591935 ips
83%|████████▎ | 1050/1261 [2:50:49<27:10, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02991199493408203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.503664016723633s
Forwarding 1 inputs ...
Total time = 0.9651608467102051s / 1 inps = 1.036096732900579 ips
Post processing 1 inputs ...
Total time = 0.31892991065979004s / 1 inps = 3.1354851538735833 ips
83%|████████▎ | 1051/1261 [2:50:57<27:08, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025091171264648438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8225018978118896s
Forwarding 1 inputs ...
Total time = 0.8199388980865479s / 1 inps = 1.2196030732700354 ips
Post processing 1 inputs ...
Total time = 0.377439022064209s / 1 inps = 2.6494345882177557 ips
83%|████████▎ | 1052/1261 [2:51:05<27:25, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03901481628417969s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7137560844421387s
Forwarding 1 inputs ...
Total time = 0.8663198947906494s / 1 inps = 1.1543080171807147 ips
Post processing 1 inputs ...
Total time = 0.337526798248291s / 1 inps = 2.9627277158134904 ips
84%|████████▎ | 1053/1261 [2:51:13<27:26, 7.92s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02965092658996582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5003888607025146s
Forwarding 1 inputs ...
Total time = 0.8695929050445557s / 1 inps = 1.14996338424445 ips
Post processing 1 inputs ...
Total time = 0.32935595512390137s / 1 inps = 3.0362286894852324 ips
84%|████████▎ | 1054/1261 [2:51:21<27:05, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028177976608276367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6279101371765137s
Forwarding 1 inputs ...
Total time = 0.7929320335388184s / 1 inps = 1.2611421379169752 ips
Post processing 1 inputs ...
Total time = 0.2994701862335205s / 1 inps = 3.3392305677474723 ips
84%|████████▎ | 1055/1261 [2:51:28<26:53, 7.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02446293830871582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6055381298065186s
Forwarding 1 inputs ...
Total time = 0.9032800197601318s / 1 inps = 1.1070764083385265 ips
Post processing 1 inputs ...
Total time = 0.34059906005859375s / 1 inps = 2.936003404789105 ips
84%|████████▎ | 1056/1261 [2:51:36<26:47, 7.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024654150009155273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4890668392181396s
Forwarding 1 inputs ...
Total time = 0.8400928974151611s / 1 inps = 1.1903445477004375 ips
Post processing 1 inputs ...
Total time = 0.33103299140930176s / 1 inps = 3.020846942604467 ips
84%|████████▍ | 1057/1261 [2:51:44<26:28, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04074406623840332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9119410514831543s
Forwarding 1 inputs ...
Total time = 0.9081230163574219s / 1 inps = 1.1011723984390425 ips
Post processing 1 inputs ...
Total time = 0.3300631046295166s / 1 inps = 3.0297236679102997 ips
84%|████████▍ | 1058/1261 [2:51:52<26:34, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06292390823364258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4308979511260986s
Forwarding 1 inputs ...
Total time = 0.8251659870147705s / 1 inps = 1.2118773867761226 ips
Post processing 1 inputs ...
Total time = 0.3291628360748291s / 1 inps = 3.0380100375993493 ips
84%|████████▍ | 1059/1261 [2:51:59<26:06, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026468992233276367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5628671646118164s
Forwarding 1 inputs ...
Total time = 0.9131369590759277s / 1 inps = 1.0951259721345368 ips
Post processing 1 inputs ...
Total time = 0.30597686767578125s / 1 inps = 3.2682209200847776 ips
84%|████████▍ | 1060/1261 [2:52:07<25:41, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02596902847290039s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3991830348968506s
Forwarding 1 inputs ...
Total time = 0.7824809551239014s / 1 inps = 1.2779863758366563 ips
Post processing 1 inputs ...
Total time = 0.3143429756164551s / 1 inps = 3.1812385756001365 ips
84%|████████▍ | 1061/1261 [2:52:14<25:18, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020152807235717773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6502888202667236s
Forwarding 1 inputs ...
Total time = 1.339906930923462s / 1 inps = 0.7463204920589532 ips
Post processing 1 inputs ...
Total time = 0.310513973236084s / 1 inps = 3.220466987615077 ips
84%|████████▍ | 1062/1261 [2:52:23<26:18, 7.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0669870376586914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4793128967285156s
Forwarding 1 inputs ...
Total time = 0.9731500148773193s / 1 inps = 1.0275907976285297 ips
Post processing 1 inputs ...
Total time = 0.360353946685791s / 1 inps = 2.7750493901817745 ips
84%|████████▍ | 1063/1261 [2:52:33<28:39, 8.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10190892219543457s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5268778800964355s
Forwarding 1 inputs ...
Total time = 0.785175085067749s / 1 inps = 1.273601288448569 ips
Post processing 1 inputs ...
Total time = 0.3164091110229492s / 1 inps = 3.1604652494582237 ips
84%|████████▍ | 1064/1261 [2:52:41<27:34, 8.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04448509216308594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4141969680786133s
Forwarding 1 inputs ...
Total time = 0.8098177909851074s / 1 inps = 1.2348456790305191 ips
Post processing 1 inputs ...
Total time = 0.3239760398864746s / 1 inps = 3.086648013693892 ips
84%|████████▍ | 1065/1261 [2:52:49<26:24, 8.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024619102478027344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4236109256744385s
Forwarding 1 inputs ...
Total time = 0.8064041137695312s / 1 inps = 1.2400730389698855 ips
Post processing 1 inputs ...
Total time = 0.30535197257995605s / 1 inps = 3.274909251611765 ips
85%|████████▍ | 1066/1261 [2:52:56<25:29, 7.85s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028491973876953125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3561718463897705s
Forwarding 1 inputs ...
Total time = 0.8159499168395996s / 1 inps = 1.2255654168987202 ips
Post processing 1 inputs ...
Total time = 0.2912180423736572s / 1 inps = 3.4338531769845355 ips
85%|████████▍ | 1067/1261 [2:53:03<24:42, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021281003952026367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.5995800495147705s
Forwarding 1 inputs ...
Total time = 1.1161370277404785s / 1 inps = 0.895947339032746 ips
Post processing 1 inputs ...
Total time = 0.3937950134277344s / 1 inps = 2.5393922368280846 ips
85%|████████▍ | 1068/1261 [2:53:12<25:59, 8.08s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026729106903076172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.353801965713501s
Forwarding 1 inputs ...
Total time = 1.2124550342559814s / 1 inps = 0.8247728548660332 ips
Post processing 1 inputs ...
Total time = 0.5341649055480957s / 1 inps = 1.8720810551451716 ips
85%|████████▍ | 1069/1261 [2:53:22<27:23, 8.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05007600784301758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.868513822555542s
Forwarding 1 inputs ...
Total time = 1.6838650703430176s / 1 inps = 0.593871811710122 ips
Post processing 1 inputs ...
Total time = 0.5005578994750977s / 1 inps = 1.9977708893389448 ips
85%|████████▍ | 1070/1261 [2:53:34<30:19, 9.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06182599067687988s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.7543509006500244s
Forwarding 1 inputs ...
Total time = 1.1652171611785889s / 1 inps = 0.8582091247167388 ips
Post processing 1 inputs ...
Total time = 0.3983440399169922s / 1 inps = 2.5103927755725484 ips
85%|████████▍ | 1071/1261 [2:53:45<31:41, 10.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07616090774536133s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.8362529277801514s
Forwarding 1 inputs ...
Total time = 0.8974490165710449s / 1 inps = 1.114269425377254 ips
Post processing 1 inputs ...
Total time = 0.30182886123657227s / 1 inps = 3.31313578132677 ips
85%|████████▌ | 1072/1261 [2:53:54<31:08, 9.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04427909851074219s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.572134017944336s
Forwarding 1 inputs ...
Total time = 0.9675960540771484s / 1 inps = 1.0334891257424124 ips
Post processing 1 inputs ...
Total time = 0.36101317405700684s / 1 inps = 2.769982016894741 ips
85%|████████▌ | 1073/1261 [2:54:02<29:19, 9.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05493903160095215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.448354959487915s
Forwarding 1 inputs ...
Total time = 0.8230209350585938s / 1 inps = 1.2150359212050985 ips
Post processing 1 inputs ...
Total time = 0.312345027923584s / 1 inps = 3.201587701420535 ips
85%|████████▌ | 1074/1261 [2:54:10<27:31, 8.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026530981063842773s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4410488605499268s
Forwarding 1 inputs ...
Total time = 0.8361990451812744s / 1 inps = 1.1958875171678964 ips
Post processing 1 inputs ...
Total time = 0.43276500701904297s / 1 inps = 2.310722872184527 ips
85%|████████▌ | 1075/1261 [2:54:18<26:12, 8.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028018951416015625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.0773098468780518s
Forwarding 1 inputs ...
Total time = 1.1462159156799316s / 1 inps = 0.8724359750377425 ips
Post processing 1 inputs ...
Total time = 0.43710899353027344s / 1 inps = 2.2877589223767405 ips
85%|████████▌ | 1076/1261 [2:54:26<26:14, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.10824704170227051s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.612434148788452s
Forwarding 1 inputs ...
Total time = 0.788607120513916s / 1 inps = 1.2680585477700537 ips
Post processing 1 inputs ...
Total time = 0.3328359127044678s / 1 inps = 3.0044834761804133 ips
85%|████████▌ | 1077/1261 [2:54:35<26:04, 8.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0712890625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.671957015991211s
Forwarding 1 inputs ...
Total time = 0.8275198936462402s / 1 inps = 1.2084301630426952 ips
Post processing 1 inputs ...
Total time = 0.32515788078308105s / 1 inps = 3.075429073383335 ips
85%|████████▌ | 1078/1261 [2:54:42<25:13, 8.27s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029638051986694336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.627350091934204s
Forwarding 1 inputs ...
Total time = 1.3924758434295654s / 1 inps = 0.7181453126950293 ips
Post processing 1 inputs ...
Total time = 0.4912760257720947s / 1 inps = 2.0355155707596135 ips
86%|████████▌ | 1079/1261 [2:54:51<25:09, 8.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03978705406188965s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5631229877471924s
Forwarding 1 inputs ...
Total time = 1.0367021560668945s / 1 inps = 0.9645972029168556 ips
Post processing 1 inputs ...
Total time = 0.32647109031677246s / 1 inps = 3.0630583523634742 ips
86%|████████▌ | 1080/1261 [2:54:59<24:35, 8.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04161405563354492s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.687567949295044s
Forwarding 1 inputs ...
Total time = 0.8322510719299316s / 1 inps = 1.2015604830415783 ips
Post processing 1 inputs ...
Total time = 0.29076600074768066s / 1 inps = 3.439191643550425 ips
86%|████████▌ | 1081/1261 [2:55:07<24:24, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04998207092285156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4246699810028076s
Forwarding 1 inputs ...
Total time = 0.8233809471130371s / 1 inps = 1.2145046633714685 ips
Post processing 1 inputs ...
Total time = 0.29936981201171875s / 1 inps = 3.340350161828793 ips
86%|████████▌ | 1082/1261 [2:55:14<23:48, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024921894073486328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4987869262695312s
Forwarding 1 inputs ...
Total time = 0.7702648639678955s / 1 inps = 1.2982547261063693 ips
Post processing 1 inputs ...
Total time = 0.30164599418640137s / 1 inps = 3.3151443058184706 ips
86%|████████▌ | 1083/1261 [2:55:22<23:05, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.044947147369384766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.481382131576538s
Forwarding 1 inputs ...
Total time = 0.9691548347473145s / 1 inps = 1.0318268703274103 ips
Post processing 1 inputs ...
Total time = 0.36501097679138184s / 1 inps = 2.7396436369954413 ips
86%|████████▌ | 1084/1261 [2:55:30<23:00, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0453948974609375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3879551887512207s
Forwarding 1 inputs ...
Total time = 0.8267271518707275s / 1 inps = 1.20958891665429 ips
Post processing 1 inputs ...
Total time = 0.31269311904907227s / 1 inps = 3.1980236822642256 ips
86%|████████▌ | 1085/1261 [2:55:37<22:43, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0389251708984375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4386889934539795s
Forwarding 1 inputs ...
Total time = 0.8650660514831543s / 1 inps = 1.1559810933344357 ips
Post processing 1 inputs ...
Total time = 0.31567811965942383s / 1 inps = 3.167783693969261 ips
86%|████████▌ | 1086/1261 [2:55:45<22:19, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029363155364990234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4830241203308105s
Forwarding 1 inputs ...
Total time = 0.8045260906219482s / 1 inps = 1.242967769046419 ips
Post processing 1 inputs ...
Total time = 0.3013160228729248s / 1 inps = 3.3187747218531887 ips
86%|████████▌ | 1087/1261 [2:55:52<21:58, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02754807472229004s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4310660362243652s
Forwarding 1 inputs ...
Total time = 0.8164269924163818s / 1 inps = 1.2248492630557162 ips
Post processing 1 inputs ...
Total time = 0.3085799217224121s / 1 inps = 3.240651544722231 ips
86%|████████▋ | 1088/1261 [2:55:59<21:38, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029150962829589844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5705418586730957s
Forwarding 1 inputs ...
Total time = 0.9581718444824219s / 1 inps = 1.0436541271364246 ips
Post processing 1 inputs ...
Total time = 0.3050529956817627s / 1 inps = 3.278118930663509 ips
86%|████████▋ | 1089/1261 [2:56:07<21:33, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024338960647583008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.478510856628418s
Forwarding 1 inputs ...
Total time = 0.8755109310150146s / 1 inps = 1.1421901938341994 ips
Post processing 1 inputs ...
Total time = 0.32935404777526855s / 1 inps = 3.0362462728326327 ips
86%|████████▋ | 1090/1261 [2:56:15<21:34, 7.57s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01180887222290039s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5975451469421387s
Forwarding 1 inputs ...
Total time = 0.8717892169952393s / 1 inps = 1.1470662638460472 ips
Post processing 1 inputs ...
Total time = 0.30735301971435547s / 1 inps = 3.2535876853572794 ips
87%|████████▋ | 1091/1261 [2:56:22<21:31, 7.60s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026774883270263672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.559237003326416s
Forwarding 1 inputs ...
Total time = 1.009153127670288s / 1 inps = 0.9909298921845302 ips
Post processing 1 inputs ...
Total time = 0.4126429557800293s / 1 inps = 2.4234025711396794 ips
87%|████████▋ | 1092/1261 [2:56:30<21:43, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.035180091857910156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.624089002609253s
Forwarding 1 inputs ...
Total time = 1.2095558643341064s / 1 inps = 0.8267497430145794 ips
Post processing 1 inputs ...
Total time = 0.3727080821990967s / 1 inps = 2.683064971652025 ips
87%|████████▋ | 1093/1261 [2:56:39<22:15, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01969313621520996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.557810068130493s
Forwarding 1 inputs ...
Total time = 1.1198339462280273s / 1 inps = 0.8929895395369395 ips
Post processing 1 inputs ...
Total time = 0.2969810962677002s / 1 inps = 3.3672176868072277 ips
87%|████████▋ | 1094/1261 [2:56:47<22:09, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024084091186523438s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7363529205322266s
Forwarding 1 inputs ...
Total time = 0.8989360332489014s / 1 inps = 1.1124262049946279 ips
Post processing 1 inputs ...
Total time = 0.33555006980895996s / 1 inps = 2.980181171082259 ips
87%|████████▋ | 1095/1261 [2:56:55<22:06, 7.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04824495315551758s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5219180583953857s
Forwarding 1 inputs ...
Total time = 1.3680751323699951s / 1 inps = 0.7309540070855923 ips
Post processing 1 inputs ...
Total time = 0.31847095489501953s / 1 inps = 3.1400037731215993 ips
87%|████████▋ | 1096/1261 [2:57:03<22:23, 8.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.061202049255371094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.636245012283325s
Forwarding 1 inputs ...
Total time = 0.9575779438018799s / 1 inps = 1.0443014132402544 ips
Post processing 1 inputs ...
Total time = 0.31165194511413574s / 1 inps = 3.2087077128101087 ips
87%|████████▋ | 1097/1261 [2:57:11<22:08, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04200887680053711s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5281789302825928s
Forwarding 1 inputs ...
Total time = 0.9923789501190186s / 1 inps = 1.007679576315144 ips
Post processing 1 inputs ...
Total time = 0.30498480796813965s / 1 inps = 3.2788518440055068 ips
87%|████████▋ | 1098/1261 [2:57:19<21:49, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026616811752319336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3926589488983154s
Forwarding 1 inputs ...
Total time = 0.9627528190612793s / 1 inps = 1.0386882076076787 ips
Post processing 1 inputs ...
Total time = 0.3138430118560791s / 1 inps = 3.186306408691286 ips
87%|████████▋ | 1099/1261 [2:57:27<21:26, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03220701217651367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4400930404663086s
Forwarding 1 inputs ...
Total time = 0.8392660617828369s / 1 inps = 1.1915172619702017 ips
Post processing 1 inputs ...
Total time = 0.3106679916381836s / 1 inps = 3.218870391915496 ips
87%|████████▋ | 1100/1261 [2:57:34<20:56, 7.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0557248592376709s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4382359981536865s
Forwarding 1 inputs ...
Total time = 0.836169958114624s / 1 inps = 1.1959291173947173 ips
Post processing 1 inputs ...
Total time = 0.30030107498168945s / 1 inps = 3.3299914096577043 ips
87%|████████▋ | 1101/1261 [2:57:42<20:34, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022861003875732422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.487766981124878s
Forwarding 1 inputs ...
Total time = 1.0380690097808838s / 1 inps = 0.9633270915303411 ips
Post processing 1 inputs ...
Total time = 0.3448770046234131s / 1 inps = 2.8995844506708863 ips
87%|████████▋ | 1102/1261 [2:57:50<20:31, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020823955535888672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5230820178985596s
Forwarding 1 inputs ...
Total time = 0.9586508274078369s / 1 inps = 1.0431326729294856 ips
Post processing 1 inputs ...
Total time = 0.34103918075561523s / 1 inps = 2.9322144094539935 ips
87%|████████▋ | 1103/1261 [2:57:57<20:21, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07198095321655273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.9737770557403564s
Forwarding 1 inputs ...
Total time = 0.8704771995544434s / 1 inps = 1.1487951671931824 ips
Post processing 1 inputs ...
Total time = 0.33504199981689453s / 1 inps = 2.984700427249464 ips
88%|████████▊ | 1104/1261 [2:58:06<20:45, 7.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05208301544189453s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.488384962081909s
Forwarding 1 inputs ...
Total time = 0.816396951675415s / 1 inps = 1.2248943335074851 ips
Post processing 1 inputs ...
Total time = 0.2985270023345947s / 1 inps = 3.3497807306529044 ips
88%|████████▊ | 1105/1261 [2:58:13<20:27, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03986096382141113s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5850021839141846s
Forwarding 1 inputs ...
Total time = 0.7938461303710938s / 1 inps = 1.2596899597312856 ips
Post processing 1 inputs ...
Total time = 0.2864367961883545s / 1 inps = 3.491171571903849 ips
88%|████████▊ | 1106/1261 [2:58:21<20:08, 7.80s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02988600730895996s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.555147886276245s
Forwarding 1 inputs ...
Total time = 0.8218860626220703s / 1 inps = 1.2167136607836995 ips
Post processing 1 inputs ...
Total time = 0.34828710556030273s / 1 inps = 2.871194437104589 ips
88%|████████▊ | 1107/1261 [2:58:29<19:51, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.040641069412231445s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4280340671539307s
Forwarding 1 inputs ...
Total time = 1.112318992614746s / 1 inps = 0.8990226784218472 ips
Post processing 1 inputs ...
Total time = 0.4986238479614258s / 1 inps = 2.0055198003232317 ips
88%|████████▊ | 1108/1261 [2:58:38<20:59, 8.23s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05957603454589844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6253230571746826s
Forwarding 1 inputs ...
Total time = 0.8127179145812988s / 1 inps = 1.2304392238175115 ips
Post processing 1 inputs ...
Total time = 0.30322694778442383s / 1 inps = 3.2978599273800033 ips
88%|████████▊ | 1109/1261 [2:58:46<20:39, 8.15s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.017319917678833008s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5505788326263428s
Forwarding 1 inputs ...
Total time = 0.8183159828186035s / 1 inps = 1.2220218363028972 ips
Post processing 1 inputs ...
Total time = 0.30355405807495117s / 1 inps = 3.2943061487686913 ips
88%|████████▊ | 1110/1261 [2:58:53<19:58, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022298097610473633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.719960927963257s
Forwarding 1 inputs ...
Total time = 0.9437999725341797s / 1 inps = 1.0595465449261656 ips
Post processing 1 inputs ...
Total time = 0.3625490665435791s / 1 inps = 2.7582473443764832 ips
88%|████████▊ | 1111/1261 [2:59:01<19:48, 7.93s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.047308921813964844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4191548824310303s
Forwarding 1 inputs ...
Total time = 0.8386821746826172s / 1 inps = 1.1923467914152706 ips
Post processing 1 inputs ...
Total time = 0.30328989028930664s / 1 inps = 3.2971755143110943 ips
88%|████████▊ | 1112/1261 [2:59:09<19:27, 7.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024257898330688477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6854188442230225s
Forwarding 1 inputs ...
Total time = 0.855057954788208s / 1 inps = 1.1695113698435717 ips
Post processing 1 inputs ...
Total time = 0.320314884185791s / 1 inps = 3.121927982029002 ips
88%|████████▊ | 1113/1261 [2:59:17<19:17, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026851177215576172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5467920303344727s
Forwarding 1 inputs ...
Total time = 0.8061280250549316s / 1 inps = 1.2404977483965496 ips
Post processing 1 inputs ...
Total time = 0.31241798400878906s / 1 inps = 3.2008400642258406 ips
88%|████████▊ | 1114/1261 [2:59:24<18:59, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027665138244628906s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.417530059814453s
Forwarding 1 inputs ...
Total time = 0.8634319305419922s / 1 inps = 1.1581688893208772 ips
Post processing 1 inputs ...
Total time = 0.3269319534301758s / 1 inps = 3.0587404795034026 ips
88%|████████▊ | 1115/1261 [2:59:33<19:08, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026548147201538086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.730945110321045s
Forwarding 1 inputs ...
Total time = 0.8210570812225342s / 1 inps = 1.2179421173872882 ips
Post processing 1 inputs ...
Total time = 0.314608097076416s / 1 inps = 3.1785577335509814 ips
89%|████████▊ | 1116/1261 [2:59:40<18:54, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023501157760620117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4412789344787598s
Forwarding 1 inputs ...
Total time = 0.7961530685424805s / 1 inps = 1.2560398741296102 ips
Post processing 1 inputs ...
Total time = 0.32071900367736816s / 1 inps = 3.1179942209036176 ips
89%|████████▊ | 1117/1261 [2:59:48<18:26, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024135112762451172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5277631282806396s
Forwarding 1 inputs ...
Total time = 0.8019521236419678s / 1 inps = 1.2469572316345046 ips
Post processing 1 inputs ...
Total time = 0.3501780033111572s / 1 inps = 2.8556905075257717 ips
89%|████████▊ | 1118/1261 [2:59:55<18:12, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0320281982421875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.550323963165283s
Forwarding 1 inputs ...
Total time = 0.8129749298095703s / 1 inps = 1.2300502307423404 ips
Post processing 1 inputs ...
Total time = 0.31897783279418945s / 1 inps = 3.1350140893496476 ips
89%|████████▊ | 1119/1261 [3:00:03<18:01, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031347036361694336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3926479816436768s
Forwarding 1 inputs ...
Total time = 0.8401100635528564s / 1 inps = 1.1903202251511702 ips
Post processing 1 inputs ...
Total time = 0.3026001453399658s / 1 inps = 3.3046910763262125 ips
89%|████████▉ | 1120/1261 [3:00:10<17:43, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030055999755859375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4481210708618164s
Forwarding 1 inputs ...
Total time = 0.8066959381103516s / 1 inps = 1.2396244393426032 ips
Post processing 1 inputs ...
Total time = 0.3021972179412842s / 1 inps = 3.309097306760436 ips
89%|████████▉ | 1121/1261 [3:00:17<17:24, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.013486862182617188s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4075379371643066s
Forwarding 1 inputs ...
Total time = 0.8542120456695557s / 1 inps = 1.1706695135821594 ips
Post processing 1 inputs ...
Total time = 0.3217499256134033s / 1 inps = 3.108003826554241 ips
89%|████████▉ | 1122/1261 [3:00:25<17:18, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04190683364868164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4409451484680176s
Forwarding 1 inputs ...
Total time = 0.8787322044372559s / 1 inps = 1.138003131045373 ips
Post processing 1 inputs ...
Total time = 0.3002347946166992s / 1 inps = 3.3307265444588796 ips
89%|████████▉ | 1123/1261 [3:00:32<17:13, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024100065231323242s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.029660940170288s
Forwarding 1 inputs ...
Total time = 0.799475908279419s / 1 inps = 1.250819430134094 ips
Post processing 1 inputs ...
Total time = 0.3058609962463379s / 1 inps = 3.2694590427430907 ips
89%|████████▉ | 1124/1261 [3:00:41<17:32, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024633169174194336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.398550033569336s
Forwarding 1 inputs ...
Total time = 1.0260009765625s / 1 inps = 0.9746579417013682 ips
Post processing 1 inputs ...
Total time = 0.4025428295135498s / 1 inps = 2.4842077083038427 ips
89%|████████▉ | 1125/1261 [3:00:49<17:38, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06297898292541504s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6193320751190186s
Forwarding 1 inputs ...
Total time = 0.8366289138793945s / 1 inps = 1.1952730576368251 ips
Post processing 1 inputs ...
Total time = 0.3016021251678467s / 1 inps = 3.3156265044335584 ips
89%|████████▉ | 1126/1261 [3:00:57<17:43, 7.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03968191146850586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.559009075164795s
Forwarding 1 inputs ...
Total time = 0.901975154876709s / 1 inps = 1.1086779880723987 ips
Post processing 1 inputs ...
Total time = 0.3048720359802246s / 1 inps = 3.2800646893861547 ips
89%|████████▉ | 1127/1261 [3:01:04<17:21, 7.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037767887115478516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.504647970199585s
Forwarding 1 inputs ...
Total time = 0.8955898284912109s / 1 inps = 1.1165825785278152 ips
Post processing 1 inputs ...
Total time = 0.29206418991088867s / 1 inps = 3.423904862506796 ips
89%|████████▉ | 1128/1261 [3:01:12<17:08, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025616168975830078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.48291015625s
Forwarding 1 inputs ...
Total time = 0.8610110282897949s / 1 inps = 1.1614253094832891 ips
Post processing 1 inputs ...
Total time = 0.322894811630249s / 1 inps = 3.0969837977610886 ips
90%|████████▉ | 1129/1261 [3:01:20<17:07, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.021060943603515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4217679500579834s
Forwarding 1 inputs ...
Total time = 0.8041181564331055s / 1 inps = 1.2435983343987458 ips
Post processing 1 inputs ...
Total time = 0.39423298835754395s / 1 inps = 2.5365710874835883 ips
90%|████████▉ | 1130/1261 [3:01:27<16:48, 7.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03951883316040039s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.523268938064575s
Forwarding 1 inputs ...
Total time = 0.8708970546722412s / 1 inps = 1.1482413387841186 ips
Post processing 1 inputs ...
Total time = 0.3280489444732666s / 1 inps = 3.048325613745397 ips
90%|████████▉ | 1131/1261 [3:01:35<16:40, 7.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02114582061767578s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.590358018875122s
Forwarding 1 inputs ...
Total time = 0.9502310752868652s / 1 inps = 1.0523756021114232 ips
Post processing 1 inputs ...
Total time = 0.35373997688293457s / 1 inps = 2.826935221774316 ips
90%|████████▉ | 1132/1261 [3:01:43<16:41, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04095315933227539s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.506078004837036s
Forwarding 1 inputs ...
Total time = 0.8577561378479004s / 1 inps = 1.1658325203116444 ips
Post processing 1 inputs ...
Total time = 0.334104061126709s / 1 inps = 2.993079451436988 ips
90%|████████▉ | 1133/1261 [3:01:50<16:30, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025675058364868164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.460966110229492s
Forwarding 1 inputs ...
Total time = 0.815824031829834s / 1 inps = 1.2257545266925671 ips
Post processing 1 inputs ...
Total time = 0.3115360736846924s / 1 inps = 3.209901146189915 ips
90%|████████▉ | 1134/1261 [3:01:58<16:15, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026293039321899414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4807140827178955s
Forwarding 1 inputs ...
Total time = 0.8809950351715088s / 1 inps = 1.1350801764794551 ips
Post processing 1 inputs ...
Total time = 0.3378031253814697s / 1 inps = 2.9603041679106243 ips
90%|█████████ | 1135/1261 [3:02:06<16:06, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027647972106933594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6193339824676514s
Forwarding 1 inputs ...
Total time = 0.8894238471984863s / 1 inps = 1.1243233506160277 ips
Post processing 1 inputs ...
Total time = 0.2936868667602539s / 1 inps = 3.404987124658633 ips
90%|█████████ | 1136/1261 [3:02:14<16:04, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026568174362182617s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6510870456695557s
Forwarding 1 inputs ...
Total time = 0.9290862083435059s / 1 inps = 1.0763263850218252 ips
Post processing 1 inputs ...
Total time = 0.35306501388549805s / 1 inps = 2.8323395427798133 ips
90%|█████████ | 1137/1261 [3:02:21<16:06, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03521394729614258s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4298760890960693s
Forwarding 1 inputs ...
Total time = 0.7841839790344238s / 1 inps = 1.275210953979592 ips
Post processing 1 inputs ...
Total time = 0.3063688278198242s / 1 inps = 3.264039645012778 ips
90%|█████████ | 1138/1261 [3:02:29<15:52, 7.74s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02443695068359375s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4660050868988037s
Forwarding 1 inputs ...
Total time = 0.8192398548126221s / 1 inps = 1.2206437395904302 ips
Post processing 1 inputs ...
Total time = 0.2958061695098877s / 1 inps = 3.3805921007559436 ips
90%|█████████ | 1139/1261 [3:02:36<15:29, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029532909393310547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.510308027267456s
Forwarding 1 inputs ...
Total time = 1.7051200866699219s / 1 inps = 0.5864689577101795 ips
Post processing 1 inputs ...
Total time = 0.48120713233947754s / 1 inps = 2.0781071866876015 ips
90%|█████████ | 1140/1261 [3:02:45<16:09, 8.01s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01777505874633789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.664644956588745s
Forwarding 1 inputs ...
Total time = 0.867189884185791s / 1 inps = 1.1531499827617397 ips
Post processing 1 inputs ...
Total time = 0.31801509857177734s / 1 inps = 3.144504787637609 ips
90%|█████████ | 1141/1261 [3:02:54<16:20, 8.17s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05142521858215332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4574599266052246s
Forwarding 1 inputs ...
Total time = 0.7911889553070068s / 1 inps = 1.2639205758527907 ips
Post processing 1 inputs ...
Total time = 0.30683088302612305s / 1 inps = 3.2591243428219765 ips
91%|█████████ | 1142/1261 [3:03:01<15:45, 7.95s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036396026611328125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6128921508789062s
Forwarding 1 inputs ...
Total time = 0.9634051322937012s / 1 inps = 1.037984920860005 ips
Post processing 1 inputs ...
Total time = 0.3172910213470459s / 1 inps = 3.1516807369919935 ips
91%|█████████ | 1143/1261 [3:03:09<15:27, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02411794662475586s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5168840885162354s
Forwarding 1 inputs ...
Total time = 0.8103010654449463s / 1 inps = 1.2341092004499434 ips
Post processing 1 inputs ...
Total time = 0.30301403999328613s / 1 inps = 3.300177113978471 ips
91%|█████████ | 1144/1261 [3:03:17<15:14, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02043294906616211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.524664878845215s
Forwarding 1 inputs ...
Total time = 0.9613351821899414s / 1 inps = 1.0402199134353736 ips
Post processing 1 inputs ...
Total time = 0.34218287467956543s / 1 inps = 2.922413931253697 ips
91%|█████████ | 1145/1261 [3:03:24<15:02, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.08104205131530762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7843329906463623s
Forwarding 1 inputs ...
Total time = 0.8601429462432861s / 1 inps = 1.1625974547225504 ips
Post processing 1 inputs ...
Total time = 0.29838109016418457s / 1 inps = 3.3514188162854044 ips
91%|█████████ | 1146/1261 [3:03:33<15:17, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05191802978515625s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5145928859710693s
Forwarding 1 inputs ...
Total time = 0.824254035949707s / 1 inps = 1.213218202623416 ips
Post processing 1 inputs ...
Total time = 0.3108680248260498s / 1 inps = 3.2167991563608473 ips
91%|█████████ | 1147/1261 [3:03:40<14:55, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02652287483215332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.450428009033203s
Forwarding 1 inputs ...
Total time = 0.7802309989929199s / 1 inps = 1.2816717116991583 ips
Post processing 1 inputs ...
Total time = 0.30913281440734863s / 1 inps = 3.234855548794267 ips
91%|█████████ | 1148/1261 [3:03:48<14:29, 7.69s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.038301944732666016s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4682629108428955s
Forwarding 1 inputs ...
Total time = 0.7981951236724854s / 1 inps = 1.2528264961066324 ips
Post processing 1 inputs ...
Total time = 0.3094320297241211s / 1 inps = 3.2317275005162376 ips
91%|█████████ | 1149/1261 [3:03:55<14:10, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03541398048400879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.415321111679077s
Forwarding 1 inputs ...
Total time = 0.7844681739807129s / 1 inps = 1.274748974105081 ips
Post processing 1 inputs ...
Total time = 0.30054688453674316s / 1 inps = 3.3272678954612345 ips
91%|█████████ | 1150/1261 [3:04:02<13:51, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027225017547607422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4527270793914795s
Forwarding 1 inputs ...
Total time = 0.7986118793487549s / 1 inps = 1.2521727084944834 ips
Post processing 1 inputs ...
Total time = 0.3422658443450928s / 1 inps = 2.9217055003354075 ips
91%|█████████▏| 1151/1261 [3:04:10<13:40, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02725505828857422s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4375369548797607s
Forwarding 1 inputs ...
Total time = 0.8149142265319824s / 1 inps = 1.227123011774729 ips
Post processing 1 inputs ...
Total time = 0.31969118118286133s / 1 inps = 3.1280187220053666 ips
91%|█████████▏| 1152/1261 [3:04:17<13:29, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03823995590209961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4629030227661133s
Forwarding 1 inputs ...
Total time = 0.8016870021820068s / 1 inps = 1.24736960594126 ips
Post processing 1 inputs ...
Total time = 0.3118269443511963s / 1 inps = 3.2069069659155116 ips
91%|█████████▏| 1153/1261 [3:04:25<13:23, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02565288543701172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4413580894470215s
Forwarding 1 inputs ...
Total time = 0.8274998664855957s / 1 inps = 1.208459409482463 ips
Post processing 1 inputs ...
Total time = 0.30769801139831543s / 1 inps = 3.249939755722044 ips
92%|█████████▏| 1154/1261 [3:04:33<13:36, 7.63s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028862953186035156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4760870933532715s
Forwarding 1 inputs ...
Total time = 0.8438339233398438s / 1 inps = 1.1850673128215328 ips
Post processing 1 inputs ...
Total time = 0.3071441650390625s / 1 inps = 3.25580008942322 ips
92%|█████████▏| 1155/1261 [3:04:40<13:21, 7.56s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031516075134277344s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3901381492614746s
Forwarding 1 inputs ...
Total time = 0.8336210250854492s / 1 inps = 1.1995858668481836 ips
Post processing 1 inputs ...
Total time = 0.3031017780303955s / 1 inps = 3.2992218207961765 ips
92%|█████████▏| 1156/1261 [3:04:47<13:09, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02292013168334961s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.474989891052246s
Forwarding 1 inputs ...
Total time = 0.8014359474182129s / 1 inps = 1.247760352179674 ips
Post processing 1 inputs ...
Total time = 0.30945897102355957s / 1 inps = 3.231446148393832 ips
92%|█████████▏| 1157/1261 [3:04:55<12:56, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03842520713806152s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.475543975830078s
Forwarding 1 inputs ...
Total time = 0.8169550895690918s / 1 inps = 1.224057494430271 ips
Post processing 1 inputs ...
Total time = 0.301846981048584s / 1 inps = 3.3129368944692024 ips
92%|█████████▏| 1158/1261 [3:05:02<12:43, 7.41s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.028026103973388672s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.060786008834839s
Forwarding 1 inputs ...
Total time = 1.3406939506530762s / 1 inps = 0.7458823839049039 ips
Post processing 1 inputs ...
Total time = 0.35039210319519043s / 1 inps = 2.85394559660763 ips
92%|█████████▏| 1159/1261 [3:05:11<13:14, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02833390235900879s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.781343936920166s
Forwarding 1 inputs ...
Total time = 0.8017089366912842s / 1 inps = 1.2473354782935047 ips
Post processing 1 inputs ...
Total time = 0.3373711109161377s / 1 inps = 2.9640949317933027 ips
92%|█████████▏| 1160/1261 [3:05:19<13:10, 7.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025628089904785156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5521020889282227s
Forwarding 1 inputs ...
Total time = 0.8271470069885254s / 1 inps = 1.208974936197614 ips
Post processing 1 inputs ...
Total time = 0.32474708557128906s / 1 inps = 3.0793193978656297 ips
92%|█████████▏| 1161/1261 [3:05:26<12:56, 7.77s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0403289794921875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4958980083465576s
Forwarding 1 inputs ...
Total time = 0.7946319580078125s / 1 inps = 1.258444226817981 ips
Post processing 1 inputs ...
Total time = 0.3543729782104492s / 1 inps = 2.8218855880318743 ips
92%|█████████▏| 1162/1261 [3:05:34<13:00, 7.88s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02729201316833496s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4512689113616943s
Forwarding 1 inputs ...
Total time = 0.8113911151885986s / 1 inps = 1.2324512572060409 ips
Post processing 1 inputs ...
Total time = 0.3101789951324463s / 1 inps = 3.2239449340307536 ips
92%|█████████▏| 1163/1261 [3:05:42<12:43, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.036260128021240234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.426535129547119s
Forwarding 1 inputs ...
Total time = 0.8005580902099609s / 1 inps = 1.2491285919523114 ips
Post processing 1 inputs ...
Total time = 0.3304319381713867s / 1 inps = 3.0263418407252303 ips
92%|█████████▏| 1164/1261 [3:05:49<12:24, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02581501007080078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.43570613861084s
Forwarding 1 inputs ...
Total time = 0.8210630416870117s / 1 inps = 1.2179332757997878 ips
Post processing 1 inputs ...
Total time = 0.3010900020599365s / 1 inps = 3.3212660439018324 ips
92%|█████████▏| 1165/1261 [3:05:57<12:08, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030842065811157227s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.416116952896118s
Forwarding 1 inputs ...
Total time = 0.7959930896759033s / 1 inps = 1.2562923133003079 ips
Post processing 1 inputs ...
Total time = 0.30999207496643066s / 1 inps = 3.225888920251561 ips
92%|█████████▏| 1166/1261 [3:06:04<11:52, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030837059020996094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.465597152709961s
Forwarding 1 inputs ...
Total time = 0.8210580348968506s / 1 inps = 1.2179407027246616 ips
Post processing 1 inputs ...
Total time = 0.3030381202697754s / 1 inps = 3.2999148724581717 ips
93%|█████████▎| 1167/1261 [3:06:12<11:44, 7.50s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024917125701904297s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4295270442962646s
Forwarding 1 inputs ...
Total time = 0.8059041500091553s / 1 inps = 1.240842350779109 ips
Post processing 1 inputs ...
Total time = 0.3369739055633545s / 1 inps = 2.967588835486224 ips
93%|█████████▎| 1168/1261 [3:06:19<11:33, 7.46s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03509402275085449s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4624578952789307s
Forwarding 1 inputs ...
Total time = 0.8005549907684326s / 1 inps = 1.2491334280985809 ips
Post processing 1 inputs ...
Total time = 0.30441999435424805s / 1 inps = 3.284935347697031 ips
93%|█████████▎| 1169/1261 [3:06:26<11:20, 7.40s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030074119567871094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4213647842407227s
Forwarding 1 inputs ...
Total time = 0.8077797889709473s / 1 inps = 1.2379611543313398 ips
Post processing 1 inputs ...
Total time = 0.2922389507293701s / 1 inps = 3.4218573448344225 ips
93%|█████████▎| 1170/1261 [3:06:33<11:08, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026067018508911133s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4639828205108643s
Forwarding 1 inputs ...
Total time = 0.8142380714416504s / 1 inps = 1.2281420325009473 ips
Post processing 1 inputs ...
Total time = 0.2961277961730957s / 1 inps = 3.3769204138319715 ips
93%|█████████▎| 1171/1261 [3:06:41<11:00, 7.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04567217826843262s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.457973003387451s
Forwarding 1 inputs ...
Total time = 0.8042991161346436s / 1 inps = 1.2433185365239108 ips
Post processing 1 inputs ...
Total time = 0.3076801300048828s / 1 inps = 3.250128631914353 ips
93%|█████████▎| 1172/1261 [3:06:48<10:55, 7.36s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027465105056762695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.472205877304077s
Forwarding 1 inputs ...
Total time = 1.0249149799346924s / 1 inps = 0.9756906861325415 ips
Post processing 1 inputs ...
Total time = 0.3864908218383789s / 1 inps = 2.5873835638409437 ips
93%|█████████▎| 1173/1261 [3:06:57<11:25, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.057360172271728516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5195858478546143s
Forwarding 1 inputs ...
Total time = 0.7979979515075684s / 1 inps = 1.253136048921945 ips
Post processing 1 inputs ...
Total time = 0.32276010513305664s / 1 inps = 3.0982763485832727 ips
93%|█████████▎| 1174/1261 [3:07:05<11:21, 7.84s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02353215217590332s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.417795181274414s
Forwarding 1 inputs ...
Total time = 0.818626880645752s / 1 inps = 1.2215577372821873 ips
Post processing 1 inputs ...
Total time = 0.29906392097473145s / 1 inps = 3.343766766451551 ips
93%|█████████▎| 1175/1261 [3:07:12<10:59, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03252601623535156s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.423103094100952s
Forwarding 1 inputs ...
Total time = 0.8671269416809082s / 1 inps = 1.153233686940369 ips
Post processing 1 inputs ...
Total time = 0.3242161273956299s / 1 inps = 3.0843622987937738 ips
93%|█████████▎| 1176/1261 [3:07:20<10:43, 7.58s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03404498100280762s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4570329189300537s
Forwarding 1 inputs ...
Total time = 0.8117821216583252s / 1 inps = 1.2318576294303938 ips
Post processing 1 inputs ...
Total time = 0.3125801086425781s / 1 inps = 3.1991798977312946 ips
93%|█████████▎| 1177/1261 [3:07:27<10:30, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0273740291595459s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5071640014648438s
Forwarding 1 inputs ...
Total time = 0.8220658302307129s / 1 inps = 1.2164475924262048 ips
Post processing 1 inputs ...
Total time = 0.30612897872924805s / 1 inps = 3.2665969884688293 ips
93%|█████████▎| 1178/1261 [3:07:34<10:23, 7.51s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0269620418548584s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4358530044555664s
Forwarding 1 inputs ...
Total time = 0.8213810920715332s / 1 inps = 1.2174616747970028 ips
Post processing 1 inputs ...
Total time = 0.31827592849731445s / 1 inps = 3.1419278382796008 ips
93%|█████████▎| 1179/1261 [3:07:42<10:14, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0341489315032959s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4793660640716553s
Forwarding 1 inputs ...
Total time = 0.831326961517334s / 1 inps = 1.2028961483154652 ips
Post processing 1 inputs ...
Total time = 0.2849149703979492s / 1 inps = 3.5098190825258153 ips
94%|█████████▎| 1180/1261 [3:07:49<10:06, 7.48s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03711891174316406s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4643499851226807s
Forwarding 1 inputs ...
Total time = 0.7649569511413574s / 1 inps = 1.307263106123744 ips
Post processing 1 inputs ...
Total time = 0.3051331043243408s / 1 inps = 3.277258304090963 ips
94%|█████████▎| 1181/1261 [3:07:57<09:57, 7.47s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02613687515258789s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4256138801574707s
Forwarding 1 inputs ...
Total time = 0.8267569541931152s / 1 inps = 1.2095453142888453 ips
Post processing 1 inputs ...
Total time = 0.3061079978942871s / 1 inps = 3.2668208830837053 ips
94%|█████████▎| 1182/1261 [3:08:04<09:48, 7.45s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025527000427246094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4829981327056885s
Forwarding 1 inputs ...
Total time = 0.8172240257263184s / 1 inps = 1.223654675486611 ips
Post processing 1 inputs ...
Total time = 0.30106592178344727s / 1 inps = 3.321531690057192 ips
94%|█████████▍| 1183/1261 [3:08:11<09:38, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.030491113662719727s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.701565980911255s
Forwarding 1 inputs ...
Total time = 0.8274571895599365s / 1 inps = 1.2085217369756933 ips
Post processing 1 inputs ...
Total time = 0.32858705520629883s / 1 inps = 3.0433335219860194 ips
94%|█████████▍| 1184/1261 [3:08:19<09:41, 7.55s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02971196174621582s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6859848499298096s
Forwarding 1 inputs ...
Total time = 0.8415701389312744s / 1 inps = 1.1882550886013121 ips
Post processing 1 inputs ...
Total time = 0.3362770080566406s / 1 inps = 2.97373884042517 ips
94%|█████████▍| 1185/1261 [3:08:27<09:40, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03827786445617676s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.762587785720825s
Forwarding 1 inputs ...
Total time = 0.9603860378265381s / 1 inps = 1.041247957189291 ips
Post processing 1 inputs ...
Total time = 0.5001318454742432s / 1 inps = 1.9994727571321993 ips
94%|█████████▍| 1186/1261 [3:08:35<09:46, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04064488410949707s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6175169944763184s
Forwarding 1 inputs ...
Total time = 0.861065149307251s / 1 inps = 1.161352309757892 ips
Post processing 1 inputs ...
Total time = 0.33426380157470703s / 1 inps = 2.991649096578897 ips
94%|█████████▍| 1187/1261 [3:08:44<09:49, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02906012535095215s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5416769981384277s
Forwarding 1 inputs ...
Total time = 0.7873837947845459s / 1 inps = 1.270028678039574 ips
Post processing 1 inputs ...
Total time = 0.31265878677368164s / 1 inps = 3.1983748492053445 ips
94%|█████████▍| 1188/1261 [3:08:51<09:26, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02752399444580078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.476666212081909s
Forwarding 1 inputs ...
Total time = 0.7884550094604492s / 1 inps = 1.2683031853451143 ips
Post processing 1 inputs ...
Total time = 0.3132920265197754s / 1 inps = 3.191910152034714 ips
94%|█████████▍| 1189/1261 [3:08:58<09:07, 7.61s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02744579315185547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.435547113418579s
Forwarding 1 inputs ...
Total time = 0.8015530109405518s / 1 inps = 1.2475781219093522 ips
Post processing 1 inputs ...
Total time = 0.3025381565093994s / 1 inps = 3.3053681940080555 ips
94%|█████████▍| 1190/1261 [3:09:06<08:51, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03089594841003418s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4438650608062744s
Forwarding 1 inputs ...
Total time = 0.8157989978790283s / 1 inps = 1.2257921407109722 ips
Post processing 1 inputs ...
Total time = 0.2943730354309082s / 1 inps = 3.397050271728126 ips
94%|█████████▍| 1191/1261 [3:09:13<08:40, 7.43s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.037609100341796875s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.484684944152832s
Forwarding 1 inputs ...
Total time = 0.8560261726379395s / 1 inps = 1.1681885811018946 ips
Post processing 1 inputs ...
Total time = 0.29981112480163574s / 1 inps = 3.3354332687342096 ips
95%|█████████▍| 1192/1261 [3:09:20<08:32, 7.42s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029005050659179688s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.396596908569336s
Forwarding 1 inputs ...
Total time = 0.8031280040740967s / 1 inps = 1.2451315293791447 ips
Post processing 1 inputs ...
Total time = 0.3022160530090332s / 1 inps = 3.3088910732684016 ips
95%|█████████▍| 1193/1261 [3:09:27<08:20, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025298118591308594s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.45102596282959s
Forwarding 1 inputs ...
Total time = 0.8298420906066895s / 1 inps = 1.2050485403420665 ips
Post processing 1 inputs ...
Total time = 0.30573296546936035s / 1 inps = 3.2708281832310853 ips
95%|█████████▍| 1194/1261 [3:09:35<08:11, 7.34s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02508687973022461s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4551470279693604s
Forwarding 1 inputs ...
Total time = 0.822066068649292s / 1 inps = 1.2164472396276678 ips
Post processing 1 inputs ...
Total time = 0.3055429458618164s / 1 inps = 3.2728623375001953 ips
95%|█████████▍| 1195/1261 [3:09:42<08:05, 7.35s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027364015579223633s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4811339378356934s
Forwarding 1 inputs ...
Total time = 0.8889000415802002s / 1 inps = 1.1249858850521561 ips
Post processing 1 inputs ...
Total time = 0.9555661678314209s / 1 inps = 1.0465000056138636 ips
95%|█████████▍| 1196/1261 [3:09:50<08:15, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048403024673461914s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5194740295410156s
Forwarding 1 inputs ...
Total time = 0.8070781230926514s / 1 inps = 1.2390374257303485 ips
Post processing 1 inputs ...
Total time = 0.3029770851135254s / 1 inps = 3.3005796449104405 ips
95%|█████████▍| 1197/1261 [3:09:58<08:02, 7.54s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026994943618774414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.466120958328247s
Forwarding 1 inputs ...
Total time = 0.7873020172119141s / 1 inps = 1.2701605967444576 ips
Post processing 1 inputs ...
Total time = 0.3092060089111328s / 1 inps = 3.2340898015581723 ips
95%|█████████▌| 1198/1261 [3:10:05<07:52, 7.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06154894828796387s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.431644916534424s
Forwarding 1 inputs ...
Total time = 0.7959339618682861s / 1 inps = 1.2563856398999638 ips
Post processing 1 inputs ...
Total time = 0.3015859127044678s / 1 inps = 3.3158047437710634 ips
95%|█████████▌| 1199/1261 [3:10:12<07:41, 7.44s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02099299430847168s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.944032907485962s
Forwarding 1 inputs ...
Total time = 0.9612181186676025s / 1 inps = 1.0403465983206341 ips
Post processing 1 inputs ...
Total time = 0.3549070358276367s / 1 inps = 2.8176392662039462 ips
95%|█████████▌| 1200/1261 [3:10:20<07:45, 7.64s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.051886796951293945s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4515018463134766s
Forwarding 1 inputs ...
Total time = 0.8661789894104004s / 1 inps = 1.1544957938551363 ips
Post processing 1 inputs ...
Total time = 0.3285207748413086s / 1 inps = 3.043947526554594 ips
95%|█████████▌| 1201/1261 [3:10:28<07:43, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.027542829513549805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7644197940826416s
Forwarding 1 inputs ...
Total time = 1.0953369140625s / 1 inps = 0.9129611055388387 ips
Post processing 1 inputs ...
Total time = 0.3252849578857422s / 1 inps = 3.074227614150097 ips
95%|█████████▌| 1202/1261 [3:10:37<07:50, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03168916702270508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5392417907714844s
Forwarding 1 inputs ...
Total time = 0.8740279674530029s / 1 inps = 1.1441281483407115 ips
Post processing 1 inputs ...
Total time = 0.31238293647766113s / 1 inps = 3.2011991796853834 ips
95%|█████████▌| 1203/1261 [3:10:45<07:43, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048693180084228516s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.462886095046997s
Forwarding 1 inputs ...
Total time = 0.8543491363525391s / 1 inps = 1.1704816654573869 ips
Post processing 1 inputs ...
Total time = 0.30299901962280273s / 1 inps = 3.300340711481111 ips
95%|█████████▌| 1204/1261 [3:10:53<07:28, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029966115951538086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4311540126800537s
Forwarding 1 inputs ...
Total time = 0.8285579681396484s / 1 inps = 1.2069161584979846 ips
Post processing 1 inputs ...
Total time = 0.3056490421295166s / 1 inps = 3.2717262682480683 ips
96%|█████████▌| 1205/1261 [3:11:00<07:15, 7.78s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.17920899391174316s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.57663893699646s
Forwarding 1 inputs ...
Total time = 0.9034919738769531s / 1 inps = 1.1068166944626232 ips
Post processing 1 inputs ...
Total time = 0.36278200149536133s / 1 inps = 2.7564763298015666 ips
96%|█████████▌| 1206/1261 [3:11:10<07:38, 8.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05774092674255371s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4432339668273926s
Forwarding 1 inputs ...
Total time = 0.7942078113555908s / 1 inps = 1.2591162989106761 ips
Post processing 1 inputs ...
Total time = 0.3111240863800049s / 1 inps = 3.2141516641646533 ips
96%|█████████▌| 1207/1261 [3:11:18<07:28, 8.30s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03328108787536621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6403379440307617s
Forwarding 1 inputs ...
Total time = 0.9284029006958008s / 1 inps = 1.077118564849959 ips
Post processing 1 inputs ...
Total time = 0.32224607467651367s / 1 inps = 3.1032185605483287 ips
96%|█████████▌| 1208/1261 [3:11:26<07:19, 8.29s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02459096908569336s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.389147996902466s
Forwarding 1 inputs ...
Total time = 0.8180019855499268s / 1 inps = 1.222490920150664 ips
Post processing 1 inputs ...
Total time = 0.29173779487609863s / 1 inps = 3.4277355130647407 ips
96%|█████████▌| 1209/1261 [3:11:34<06:58, 8.05s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026077985763549805s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4440670013427734s
Forwarding 1 inputs ...
Total time = 0.8423089981079102s / 1 inps = 1.1872127713776217 ips
Post processing 1 inputs ...
Total time = 0.29284095764160156s / 1 inps = 3.414822871955866 ips
96%|█████████▌| 1210/1261 [3:11:41<06:41, 7.87s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03470492362976074s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.3515889644622803s
Forwarding 1 inputs ...
Total time = 0.862739086151123s / 1 inps = 1.1590989860691596 ips
Post processing 1 inputs ...
Total time = 0.30231809616088867s / 1 inps = 3.307774204385756 ips
96%|█████████▌| 1211/1261 [3:11:49<06:25, 7.70s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.023587942123413086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.410217046737671s
Forwarding 1 inputs ...
Total time = 0.8351988792419434s / 1 inps = 1.1973196143505798 ips
Post processing 1 inputs ...
Total time = 0.28352999687194824s / 1 inps = 3.5269636759162166 ips
96%|█████████▌| 1212/1261 [3:11:56<06:13, 7.62s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024695158004760742s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4290030002593994s
Forwarding 1 inputs ...
Total time = 0.7720608711242676s / 1 inps = 1.295234660116643 ips
Post processing 1 inputs ...
Total time = 0.30789899826049805s / 1 inps = 3.247818296420535 ips
96%|█████████▌| 1213/1261 [3:12:03<06:01, 7.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02896285057067871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7262048721313477s
Forwarding 1 inputs ...
Total time = 1.0255639553070068s / 1 inps = 0.9750732704920834 ips
Post processing 1 inputs ...
Total time = 0.31563901901245117s / 1 inps = 3.1681761118404457 ips
96%|█████████▋| 1214/1261 [3:12:11<05:59, 7.65s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024843931198120117s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7367970943450928s
Forwarding 1 inputs ...
Total time = 0.8755030632019043s / 1 inps = 1.1422004582631424 ips
Post processing 1 inputs ...
Total time = 0.3233671188354492s / 1 inps = 3.092460370124604 ips
96%|█████████▋| 1215/1261 [3:12:19<05:56, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020992040634155273s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5318849086761475s
Forwarding 1 inputs ...
Total time = 0.8489701747894287s / 1 inps = 1.1778976808555512 ips
Post processing 1 inputs ...
Total time = 0.3115561008453369s / 1 inps = 3.209694810298134 ips
96%|█████████▋| 1216/1261 [3:12:27<05:47, 7.72s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03732919692993164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5287818908691406s
Forwarding 1 inputs ...
Total time = 0.8799998760223389s / 1 inps = 1.1363637964587792 ips
Post processing 1 inputs ...
Total time = 0.36400914192199707s / 1 inps = 2.7471837512649295 ips
97%|█████████▋| 1217/1261 [3:12:34<05:39, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.020325183868408203s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.769918918609619s
Forwarding 1 inputs ...
Total time = 0.823789119720459s / 1 inps = 1.2139028982797633 ips
Post processing 1 inputs ...
Total time = 0.3386681079864502s / 1 inps = 2.9527433390332964 ips
97%|█████████▋| 1218/1261 [3:12:43<05:37, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03599405288696289s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.558717966079712s
Forwarding 1 inputs ...
Total time = 0.8721940517425537s / 1 inps = 1.146533845308969 ips
Post processing 1 inputs ...
Total time = 0.3285410404205322s / 1 inps = 3.043759765050969 ips
97%|█████████▋| 1219/1261 [3:12:51<05:31, 7.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01753401756286621s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8009040355682373s
Forwarding 1 inputs ...
Total time = 0.9159739017486572s / 1 inps = 1.0917341619569414 ips
Post processing 1 inputs ...
Total time = 0.3233668804168701s / 1 inps = 3.0924626501973385 ips
97%|█████████▋| 1220/1261 [3:12:59<05:27, 7.99s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02411508560180664s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5628750324249268s
Forwarding 1 inputs ...
Total time = 0.9226491451263428s / 1 inps = 1.0838356110578362 ips
Post processing 1 inputs ...
Total time = 0.3572070598602295s / 1 inps = 2.799496741165438 ips
97%|█████████▋| 1221/1261 [3:13:07<05:19, 7.98s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022352218627929688s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.8162360191345215s
Forwarding 1 inputs ...
Total time = 0.8608090877532959s / 1 inps = 1.1616977727430726 ips
Post processing 1 inputs ...
Total time = 0.34427309036254883s / 1 inps = 2.904670820908236 ips
97%|█████████▋| 1222/1261 [3:13:15<05:13, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05500984191894531s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.799381971359253s
Forwarding 1 inputs ...
Total time = 0.9631109237670898s / 1 inps = 1.0383020016932454 ips
Post processing 1 inputs ...
Total time = 0.332766056060791s / 1 inps = 3.0051141989593915 ips
97%|█████████▋| 1223/1261 [3:13:23<05:08, 8.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.052845001220703125s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7643070220947266s
Forwarding 1 inputs ...
Total time = 0.9124729633331299s / 1 inps = 1.0959228823034348 ips
Post processing 1 inputs ...
Total time = 0.3517141342163086s / 1 inps = 2.8432181215241905 ips
97%|█████████▋| 1224/1261 [3:13:31<05:00, 8.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03676915168762207s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6222541332244873s
Forwarding 1 inputs ...
Total time = 0.8959181308746338s / 1 inps = 1.1161734153362395 ips
Post processing 1 inputs ...
Total time = 0.34174609184265137s / 1 inps = 2.92614904418695 ips
97%|█████████▋| 1225/1261 [3:13:39<04:49, 8.03s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05094003677368164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7176060676574707s
Forwarding 1 inputs ...
Total time = 0.9490630626678467s / 1 inps = 1.0536707615497836 ips
Post processing 1 inputs ...
Total time = 0.38812994956970215s / 1 inps = 2.576456676710065 ips
97%|█████████▋| 1226/1261 [3:13:48<04:45, 8.16s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0381159782409668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.749569892883301s
Forwarding 1 inputs ...
Total time = 1.2495551109313965s / 1 inps = 0.8002848303782436 ips
Post processing 1 inputs ...
Total time = 0.3610358238220215s / 1 inps = 2.7698082406718907 ips
97%|█████████▋| 1227/1261 [3:13:56<04:40, 8.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05825495719909668s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6566720008850098s
Forwarding 1 inputs ...
Total time = 0.905689001083374s / 1 inps = 1.1041317701813893 ips
Post processing 1 inputs ...
Total time = 0.3109588623046875s / 1 inps = 3.215859463172874 ips
97%|█████████▋| 1228/1261 [3:14:04<04:32, 8.24s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.05151200294494629s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.62426495552063s
Forwarding 1 inputs ...
Total time = 0.9238090515136719s / 1 inps = 1.0824747802172845 ips
Post processing 1 inputs ...
Total time = 0.30649900436401367s / 1 inps = 3.262653339037766 ips
97%|█████████▋| 1229/1261 [3:14:12<04:19, 8.12s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04963493347167969s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.699551820755005s
Forwarding 1 inputs ...
Total time = 0.8989720344543457s / 1 inps = 1.1123816555728296 ips
Post processing 1 inputs ...
Total time = 0.29796910285949707s / 1 inps = 3.356052659162904 ips
98%|█████████▊| 1230/1261 [3:14:20<04:12, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04520893096923828s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.4184060096740723s
Forwarding 1 inputs ...
Total time = 1.076225996017456s / 1 inps = 0.9291728723339445 ips
Post processing 1 inputs ...
Total time = 0.37390613555908203s / 1 inps = 2.674468014558662 ips
98%|█████████▊| 1231/1261 [3:14:30<04:14, 8.49s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.07809615135192871s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.908296823501587s
Forwarding 1 inputs ...
Total time = 0.8862578868865967s / 1 inps = 1.1283397471507721 ips
Post processing 1 inputs ...
Total time = 0.30445289611816406s / 1 inps = 3.2845803497033597 ips
98%|█████████▊| 1232/1261 [3:14:38<04:07, 8.53s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.048171043395996094s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6632299423217773s
Forwarding 1 inputs ...
Total time = 0.82806396484375s / 1 inps = 1.2076361760153314 ips
Post processing 1 inputs ...
Total time = 0.3526420593261719s / 1 inps = 2.8357366160769337 ips
98%|█████████▊| 1233/1261 [3:14:46<03:53, 8.33s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01662421226501465s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.680757999420166s
Forwarding 1 inputs ...
Total time = 0.8514609336853027s / 1 inps = 1.1744520041240045 ips
Post processing 1 inputs ...
Total time = 0.2989180088043213s / 1 inps = 3.345398974120102 ips
98%|█████████▊| 1234/1261 [3:14:54<03:41, 8.20s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0494999885559082s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5192439556121826s
Forwarding 1 inputs ...
Total time = 0.8155899047851562s / 1 inps = 1.2261063975079747 ips
Post processing 1 inputs ...
Total time = 0.302962064743042s / 1 inps = 3.300743282325305 ips
98%|█████████▊| 1235/1261 [3:15:01<03:26, 7.94s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0448911190032959s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4931421279907227s
Forwarding 1 inputs ...
Total time = 0.814561128616333s / 1 inps = 1.2276549480069907 ips
Post processing 1 inputs ...
Total time = 0.28516292572021484s / 1 inps = 3.5067672190358343 ips
98%|█████████▊| 1236/1261 [3:15:09<03:15, 7.81s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.06106305122375488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 3.502608060836792s
Forwarding 1 inputs ...
Total time = 0.9448361396789551s / 1 inps = 1.058384579086686 ips
Post processing 1 inputs ...
Total time = 0.36473703384399414s / 1 inps = 2.741701300416128 ips
98%|█████████▊| 1237/1261 [3:15:18<03:15, 8.13s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01665210723876953s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.550773859024048s
Forwarding 1 inputs ...
Total time = 0.7970919609069824s / 1 inps = 1.2545603883172223 ips
Post processing 1 inputs ...
Total time = 0.31847596168518066s / 1 inps = 3.1399544088307625 ips
98%|█████████▊| 1238/1261 [3:15:26<03:05, 8.06s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.042429208755493164s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5543010234832764s
Forwarding 1 inputs ...
Total time = 0.8269550800323486s / 1 inps = 1.2092555256579138 ips
Post processing 1 inputs ...
Total time = 0.30196189880371094s / 1 inps = 3.3116760888102834 ips
98%|█████████▊| 1239/1261 [3:15:33<02:54, 7.91s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.055052995681762695s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4834280014038086s
Forwarding 1 inputs ...
Total time = 0.7901890277862549s / 1 inps = 1.265519976658672 ips
Post processing 1 inputs ...
Total time = 0.32076478004455566s / 1 inps = 3.117549251701186 ips
98%|█████████▊| 1240/1261 [3:15:41<02:43, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026652097702026367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.44052791595459s
Forwarding 1 inputs ...
Total time = 0.8197669982910156s / 1 inps = 1.2198588160839845 ips
Post processing 1 inputs ...
Total time = 0.31020283699035645s / 1 inps = 3.223697145075072 ips
98%|█████████▊| 1241/1261 [3:15:48<02:33, 7.67s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02342677116394043s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.475029945373535s
Forwarding 1 inputs ...
Total time = 0.8169920444488525s / 1 inps = 1.2240021268194914 ips
Post processing 1 inputs ...
Total time = 0.3029060363769531s / 1 inps = 3.3013538190290284 ips
98%|█████████▊| 1242/1261 [3:15:56<02:24, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.024495840072631836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4361929893493652s
Forwarding 1 inputs ...
Total time = 0.8231279850006104s / 1 inps = 1.2148779026134782 ips
Post processing 1 inputs ...
Total time = 0.2960479259490967s / 1 inps = 3.377831466963031 ips
99%|█████████▊| 1243/1261 [3:16:03<02:15, 7.52s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025413036346435547s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6373651027679443s
Forwarding 1 inputs ...
Total time = 0.9285569190979004s / 1 inps = 1.0769399047411192 ips
Post processing 1 inputs ...
Total time = 0.32767701148986816s / 1 inps = 3.0517856454233447 ips
99%|█████████▊| 1244/1261 [3:16:11<02:09, 7.59s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.033017873764038086s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6934800148010254s
Forwarding 1 inputs ...
Total time = 0.8708319664001465s / 1 inps = 1.1483271613624952 ips
Post processing 1 inputs ...
Total time = 0.3759880065917969s / 1 inps = 2.659659304201374 ips
99%|█████████▊| 1245/1261 [3:16:19<02:03, 7.73s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04354596138000488s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.6041228771209717s
Forwarding 1 inputs ...
Total time = 0.85123610496521s / 1 inps = 1.1747622007185303 ips
Post processing 1 inputs ...
Total time = 0.331341028213501s / 1 inps = 3.0180385610309806 ips
99%|█████████▉| 1246/1261 [3:16:26<01:55, 7.71s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.04279804229736328s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.437713146209717s
Forwarding 1 inputs ...
Total time = 0.8117480278015137s / 1 inps = 1.2319093681180056 ips
Post processing 1 inputs ...
Total time = 0.3245880603790283s / 1 inps = 3.0808280465778037 ips
99%|█████████▉| 1247/1261 [3:16:34<01:47, 7.68s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.02748394012451172s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.763624906539917s
Forwarding 1 inputs ...
Total time = 0.8173801898956299s / 1 inps = 1.223420890745699 ips
Post processing 1 inputs ...
Total time = 0.2991621494293213s / 1 inps = 3.342668856697246 ips
99%|█████████▉| 1248/1261 [3:16:42<01:40, 7.75s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.022943973541259766s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7292490005493164s
Forwarding 1 inputs ...
Total time = 0.8455801010131836s / 1 inps = 1.1826200720686175 ips
Post processing 1 inputs ...
Total time = 0.3126070499420166s / 1 inps = 3.1989041839762837 ips
99%|█████████▉| 1249/1261 [3:16:50<01:33, 7.83s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03984689712524414s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.630510091781616s
Forwarding 1 inputs ...
Total time = 0.8285009860992432s / 1 inps = 1.2069991669028788 ips
Post processing 1 inputs ...
Total time = 0.3130209445953369s / 1 inps = 3.1946744052311478 ips
99%|█████████▉| 1250/1261 [3:16:58<01:25, 7.76s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029150962829589844s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.606304883956909s
Forwarding 1 inputs ...
Total time = 0.8287041187286377s / 1 inps = 1.2067033062827746 ips
Post processing 1 inputs ...
Total time = 0.347304105758667s / 1 inps = 2.8793209853236665 ips
99%|█████████▉| 1251/1261 [3:17:05<01:17, 7.79s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026510000228881836s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5888328552246094s
Forwarding 1 inputs ...
Total time = 0.9481749534606934s / 1 inps = 1.0546576835320878 ips
Post processing 1 inputs ...
Total time = 0.34706807136535645s / 1 inps = 2.8812791567545437 ips
99%|█████████▉| 1252/1261 [3:17:13<01:10, 7.86s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.01670980453491211s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7368369102478027s
Forwarding 1 inputs ...
Total time = 0.8778519630432129s / 1 inps = 1.139144231714584 ips
Post processing 1 inputs ...
Total time = 0.31537699699401855s / 1 inps = 3.1708083009585066 ips
99%|█████████▉| 1253/1261 [3:17:22<01:03, 7.96s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03739500045776367s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4363651275634766s
Forwarding 1 inputs ...
Total time = 0.8059148788452148s / 1 inps = 1.2408258319202237 ips
Post processing 1 inputs ...
Total time = 0.30452704429626465s / 1 inps = 3.2837805992269504 ips
99%|█████████▉| 1254/1261 [3:17:29<00:55, 7.90s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.029175996780395508s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.735304832458496s
Forwarding 1 inputs ...
Total time = 0.8456430435180664s / 1 inps = 1.1825320478481958 ips
Post processing 1 inputs ...
Total time = 0.29610109329223633s / 1 inps = 3.3772249500377636 ips
100%|█████████▉| 1255/1261 [3:17:37<00:46, 7.82s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.031468868255615234s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.5819308757781982s
Forwarding 1 inputs ...
Total time = 0.9460489749908447s / 1 inps = 1.057027729467893 ips
Post processing 1 inputs ...
Total time = 0.31752800941467285s / 1 inps = 3.149328469773068 ips
100%|█████████▉| 1256/1261 [3:17:45<00:39, 7.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.0201108455657959s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.7625510692596436s
Forwarding 1 inputs ...
Total time = 0.957705020904541s / 1 inps = 1.0441628457325116 ips
Post processing 1 inputs ...
Total time = 0.3093869686126709s / 1 inps = 3.2321981901310277 ips
100%|█████████▉| 1257/1261 [3:17:54<00:33, 8.26s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.025387048721313477s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.516047954559326s
Forwarding 1 inputs ...
Total time = 0.8327069282531738s / 1 inps = 1.2009027018638698 ips
Post processing 1 inputs ...
Total time = 0.30394887924194336s / 1 inps = 3.290026936417817 ips
100%|█████████▉| 1258/1261 [3:18:02<00:24, 8.10s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.026501178741455078s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.600270986557007s
Forwarding 1 inputs ...
Total time = 0.8443899154663086s / 1 inps = 1.18428700021572 ips
Post processing 1 inputs ...
Total time = 0.30890798568725586s / 1 inps = 3.23720993413365 ips
100%|█████████▉| 1259/1261 [3:18:10<00:15, 7.97s/it]
Parsing ./cfg/tiny-yolo.cfg
Parsing cfg/tiny-yolo.cfg
Loading bin/tiny-yolo.weights ...
Successfully identified 64701556 bytes
Finished in 0.03745102882385254s
Building net ...
Source | Train? | Layer description | Output size
-------+--------+----------------------------------+---------------
| | input | (?, 416, 416, 3)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 416, 416, 16)
Load | Yep! | maxp 2x2p0_2 | (?, 208, 208, 16)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 208, 208, 32)
Load | Yep! | maxp 2x2p0_2 | (?, 104, 104, 32)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 104, 104, 64)
Load | Yep! | maxp 2x2p0_2 | (?, 52, 52, 64)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 52, 52, 128)
Load | Yep! | maxp 2x2p0_2 | (?, 26, 26, 128)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 26, 26, 256)
Load | Yep! | maxp 2x2p0_2 | (?, 13, 13, 256)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 512)
Load | Yep! | maxp 2x2p0_1 | (?, 13, 13, 512)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 3x3p1_1 +bnorm leaky | (?, 13, 13, 1024)
Load | Yep! | conv 1x1p0_1 linear | (?, 13, 13, 425)
-------+--------+----------------------------------+---------------
Running entirely on CPU
Finished in 2.4115679264068604s
Forwarding 1 inputs ...
Total time = 0.8369250297546387s / 1 inps = 1.1948501531770057 ips
Post processing 1 inputs ...
Total time = 0.3359708786010742s / 1 inps = 2.9764484474482744 ips
100%|█████████▉| 1260/1261 [3:18:17<00:07, 7.91s/it]
[MoviePy] Done. [MoviePy] >>>> Video ready: data/output_images/project_output_yolo.mp4